/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to overwrite *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/

/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to overwrite *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/
body.custom { background: #f5f3db; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; border: 0.2em solid #72330b; }

		.custom #page { background: #fff; }
		
		
		.custom #header { padding-top: 0; padding-left: 0; align: left; }

.custom ul#tabs {
border-color:#DDDDDD;
border-style:solid;
border-width:0 0 1px 1px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}
.custom ul#tabs li {
background:#f5f2dc none repeat scroll 0;
border-color:#DDDDDD #DDDDDD #DDDDDD -moz-use-text-color;
border-style:solid solid solid none;
border-width:1px 1px 1px 0;
float:left;
}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat {
background:#ffffff none repeat scroll 0;
border-bottom:0 none;
padding-bottom:0.1em;
}
.custom ul#tabs li a, ul#tabs li a:visited {
color:#111111;
display:block;
letter-spacing:2px;
line-height:1em;
text-decoration:none;
text-transform:uppercase;
}
.custom ul#tabs li a:hover {
color:#111111;
text-decoration:underline;
}
.custom ul#tabs li.current_page_item a, ul#tabs li.current_page_item a:visited, ul#tabs li.current-cat a, ul#tabs li.current-cat a:visited {
cursor:default;
}
.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover {
text-decoration:none;
}
.custom ul#tabs li.rss {
background:transparent none repeat scroll 0;
border:medium none;
float:right;
padding-right:0;
}
.custom ul#tabs li.rss a {
background:transparent url(../../thesis-old/custom/images/icon-rss.gif) no-repeat scroll 100% 50%;
padding-right:16px;
}


.custom a, div a { color: #72330b; text-decoration: none; }

.custom h2 a, h2 a:visited { color: #52a7bf; text-decoration: none; }

.custom a:hover { color: #8cb111; text-decoration: underline;}

.custom #custom_box {
background:#f5f3db none repeat scroll 0;
border-bottom:1px solid #DDDDDD;
padding:1.1em;