/*
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: #E3BC47;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #AF7633;
}

.custom #page {
    background: #fff;
}


.custom #header { height: 85px; padding: 0; background: url('images/header1.png') no-repeat; }


.custom h2 a {color: #000080;}

.custom h3 {color: #111111; font-size: 1.15em;}

.custom ul#tabs li {background: #ECCE76;}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #fff; border-bottom-color: #fff; }
.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }

#footer p:first-child
{
display:none;
}



/* resources */

#resources {
top: 20px;
width: 620px;
margin: 30px 0px 0px 20px;
padding: 0px 0px 10px 0px;
border: 0px solid #4B0082;
}



#resources h3 {
margin: 8px 0 0 10px; 
text-align: left;
padding: 0px 0 0 0;
font-size: 12px;
}

#resources h4 {
margin: 10px 0 0 0px; 
text-align: left;
padding: 0px 0 0 0;
font-size: 12px;
display: block;
}

#resources h5 {
margin: 10px 0 0 0px; 
text-align: left;
padding: 0px 0 0 0;
font-size: 10px;
display: inline;
}

#resources ul {
	margin: 10px 10px 10px 10px;
	padding: 5px 5px 5px 5px;
	border: 2px solid #FFF;
	
}

#resources li {
	margin-left: 0px;
	padding: 0px 5px 0px 0px;
	border: 0px solid #4B0082;
	font-size: 11px;
	line-height: 16px;
	font-family : Verdana, Arial, sans-serif;
	text-indent : 0;
	list-style : none;
}




