/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

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 override *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!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
/* 
	LEVEL ONE
*/
.custom ul.dropdown                         { list-style-type:none; position: relative; width:980px; font-size: 16px; font-family:Calibri, "Trebuchet MS", Arial, Helvetica, sans-serif; }
.custom ul.dropdown li                      { font-weight:bold; float:left; background:url(images/button_new_test.png) repeat-x; }
.custom ul.dropdown a:hover		            { color:#f2eab2; background-color:none; }
.custom ul.dropdown a:active                { color:#FFFFFF; background-color:none; }
.custom ul.dropdown li a                    { display:block; margin-left:1.45px; margin-right:1.3px; padding: 3px 20px; border-right: 1px solid #333;
	 								  color:#f2eab2; text-align:center; }
/* remove this for compliance  ul.dropdown li:last-child a         { border-right: none; } Doesn't work in IE */
.custom ul.dropdown li.hover,
.custom ul.dropdown li:hover                { background:url(images/button_hover_new_test.png) repeat-x; color: #FFFFFF; position: relative; }
.custom ul.dropdown li.hover a              { color:#f2eab2; text-decoration:none; background:url(images/button_hover_new_test.png) repeat-x;}


/* 
	LEVEL TWO
*/
.custom ul.dropdown ul 						{ list-style-type:none; width: 250px; visibility: hidden; position: absolute; z-index:10; top: 100%; left: 0; }
.custom ul.dropdown ul li 					{ font-weight: normal; background:url(images/button_hover_new_test.png) repeat-x; color: #FFFFFF; float: none; }
.custom ul.dropdown ul li a:hover {background:url(images/button_hover_active_new_test.png) repeat-x; color:#fff;}

									  
                                    /* IE 6 & 7 Needs Inline Block PUT CSS HACK DECLARATION HERE*/
*html .custom ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block;} 

/* 
	LEVEL THREE
*/
.custom ul.dropdown ul ul 					{ list-style-type:none; left: 100%; top: 0; }
.custom ul.dropdown li:hover > ul 			{ visibility: visible; }



.custom #navcontainer {
position:absolute;
top:111px;
width:900px;
height:30px;
z-index:2;
background-color:none;
	
}

*html .custom #navcontainer
{
position:absolute;
top:111px;
width:auto;
height:30px;
z-index:2;
background-color:none;
}




body
{
background:#231411 url(images/bg_new_test.png) center no-repeat fixed;
}
#container
{
background-color:#ffffff;
}
#header
{
background-image:url(images/blog_header_new_test.png);
background-repeat:no-repeat;
height:111px;
background-color:#280103;
}
#footer
{
background-image:url(images/footer.png);
background-repeat:no-repeat;
height:42px;
text-decoration:none;
font-family:arial;
font-weight:bold;
font-size:12px;
color:#ffffff;
padding:0px;
}
#footer a
{
text-decoration:none;
color:#ffffff;
}
#footer a:hover
{
text-decoration:underline;
color:#ffffff;
}



/* CSS NAVIGATIONAL MENU */
#centernavi
{
margin:auto;
width:950px;
}


.custom #menucontainer
{
height:30px;
font-family:Calibri, "Trebuchet MS", Arial, Helvetica, sans-serif;
position:absolute;
margin-top:-43px;
width:949px;
}





/* IE 6 FIX */
* html #sddm li a
{	
display: block;
margin: 0 1px 0 0;
padding:0px 10px 0px 10px;
width: 100px;
height:30px;
background-color:#280103;
color: #FFF;
text-align: center;
text-decoration: none;
line-height:30px;
font-size:14px;
}



* html #sddm div a
	{	
	position: relative;
	display: block;
	margin: 0;
	padding: 0px 10px;
	width: 140px;
	height:25px;
	line-height:25px;
	white-space: nowrap;
	text-align: left;
	text-decoration: none;
	background-color:#280103;
	color: #ffffff;
		}
/* END OF CSS NAVIGATION TABLE */









.custom #header {border:none;}
