/*
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/
*/

.clear {
	clear:both;
	}

body {
	background: url(images/bgx.jpg) top repeat-x;
	margin-top: 0px;
}

#page {
	padding-top: 0px;
	background: url(images/headerbg.jpg) top center no-repeat;
	}

#tabs {
	margin-bottom: 293px;
	height: 60px;
	border: none;
}

#container {
	background: url(images/bgbottom.jpg) bottom center no-repeat;
	padding-bottom: 100px;
	}

/*- Nav / Dropdowns-*/
#tabs, #tabs ul{
	padding: 0;
	float:left;
	list-style: none;
}
#tabs {
	padding: 0;
	background: none;
}
#tabs a {
	background: none;
	color: #FFFFFF;
	display: block;
	padding: 5px 27px;;
	line-height:62px;
}

ul#tabs li a {
font-size:1.1em;
padding: 5px 27px;
}

#tabs li {
	float: left;
	background: none;
	border: none;
}
#tabs li a:hover {
	background: #333333;
	color: #FFFFFF;
}
#tabs li ul {
	position: absolute;
	width: 300px;
	left: -999em;
	padding-top:1px;
}
#tabs li:hover ul, #tabs li.sfhover ul {
	left: auto;
	z-index:1000;	
}
#tabs li ul li {
    background: #000000;
    border-bottom:1px solid #dedbd1;	
	border-left:1px solid #dedbd1;	
	border-right:1px solid #dedbd1;			
	line-height:62px;	
	padding: none;
	width:300px;
}
#tabs li:hover, #tabs li.hover {
    position: static;
}
#tabs li ul ul {
	margin: -29px 0 0 15em;
}
#tabs li:hover ul ul, #tabs li.sfhover ul ul {
	left: -999em;
}
#tabs li:hover ul, #tabs li li:hover ul, #tabs li.sfhover ul, #tabs li li.sfhover ul {
	left: auto;
}
#tabs li:hover ul ul, #tabs li:hover ul ul ul, #tabs li.sfhover ul ul, #tabs li.sfhover ul ul ul {
	left: -999em;
}
#tabs li:hover ul, #tabs li li:hover ul, #tabs li li li:hover ul, #tabs li.sfhover ul, #tabs li li.sfhover ul, #tabs li li li.sfhover ul {
	left: auto;	
}

#tabs .current_page_item, #tabs .current_cat {
	background: #333333;
	}

#header {
	display: none;
}

.comments_closed { display: none; }

