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

body.custom {background: #97979B url('images/Page-BgTexture.jpg') repeat top left ; }

.custom #header {  background: #9d9d85 url(images/Header.jpg) no-repeat; height:130px; }
.custom #header #logo a { display: block;  width: 786px; none;  float:left; height:130px;  }
.custom #header #logo { text-indent: -9999px; }


.custom #nav_area { height: 42px;}
.custom .menu {width: 785px; margin: 0px auto;}
.custom ul.menu {margin: 0 auto;  font-family: Verdana; font-size: 9.6px;  background: url('images/nav.png') no-repeat;  }
.custom .menu .current a{background: #efefeb; color: #111112;}
.custom menu li.tab {	padding-top: 10px; }

.custom ul.menu li a {background: transparent;  height: 26px; letter-spacing: 0px;  }
.custom ul.menu li a:hover {background: #7f7f7f; color: #fff;}


.custom #tabs, .custom #tabs li {border: 1px solid #000;}

.custom .menu li {width: 75px;text-align:center;padding-right: 3px;}
.custom .menu li.tab-5 {
width: 85px;
}
.custom .menu li.tab-4 {
	width:55px;
}
.custom .menu li.tab-3 {
	width:90px;
}
.custom .menu li.tab-9 {
	padding-right:0;
}





.custom #content {	background: #efefeb;}

.custom #content_area .page {	background: #eaeae6; margin: 0 auto;}
.custom #footer_area .page {	background: transparent;}

.custom #sidebars { background: #eaeae6; } 
.custom .sidebar h3 {font-weight: bold; color: #4a4a4a; font-family: Arial, Verdana; font-size: 16px; text-transform: none;} 

#image1{background:url('images/Page-BgTexture.jpg') repeat top left;}
#image2{background:url('images/Page-BgGradient.jpg') repeat-x top left;}

#footer2{font-size:12px; position:relative; text-align:center; padding: 15px 5px 0 0; background:url('images/Footer.png') no-repeat top center; height: 60px; color: #dadbd2; }
#footer2 a{color: #bfbfb0; }

.custom .headline_area h1 {font-weight:bold; font-family:Arial, Verdana; font-size: 20px; }
.custom .headline_area h2 {font-weight:bold; font-family:Arial, Verdana; font-size: 20px;}
.custom .format_text h2  {font-weight:bold; font-family:Arial, Verdana; font-size: 15px; }

.post_box { border-width:1px 0 0; padding-top:1.5em; }
.custom .comments_closed p {display: none ;}
