/*
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:#EBF8FF;
}

.custom #header {
	width: 960px;
	height: 148px;
	padding: 0;
	border: none;
}
.custom #header_area .page {
	padding-top: 0em;
	width: 960px;
}

/* second nav bar */
.custom #nav_container {
	width: 960px; 
	margin: auto;
	height: 31px;
	background: #F0F1F1;
}
.custom ul#secondnav {
	border-style: none;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	background:transparent;
	width: 100%;
	float: left;
	padding: 5px 8px 5px 8px;
}

.custom ul#secondnav li { float: left; padding: 3px 15px 3px 0px; }
.custom ul#secondnav a { font-size: 12px; color: #000000; }
.custom ul#secondnav li a:hover { text-decoration: underline; }

.custom #logo {
	background-image: url(/images/whs-header2.jpg); 
	background-repeat: no-repeat;
	width:960px; 
	height: 148px; 
	text-indent: -9999px;
}

.custom #logo a {
 	width:960px; 
 	height: 148px; 
 	display: block; 
 	outline: none;
}
.custom .menu {
	padding: 5px;
	background: url(/images/whs-menu-bg.png);
	border: none;
}

.custom .menu a {
	background: transparent;
	border-left: 1px;
	border-style: solid;
	border-color: white;

}

.custom .menu .tab-home a {
	border: none;
}

.custom .menu li {
	border:none;

}

.custom #content {
	border:none;
	width: 660px;
	margin-left: 15px;
}

.custom #content_box {
	margin-top: 0px;
	background: white;

}
.custom #footer {border-style: none;}

.custom #footer_area .page {background: transparent;}

.custom .full_width > .page {
	background: #FFFFFF;
	width: 960px;
}

.custom .video_box {
	background: transparent;
}

.custom .sidebar input[type="text"], .sidebar input[type="submit"] {
	padding: 0;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.custom #multimedia_box {
	margin-bottom: 20px;
}

.custom li.widget {
	font-size: 1.3em;
	line-height: 1.385em;
	margin-bottom: 0;
}

.custom #feature_box {
	background: transparent;;
	padding: 0;
	border: none;
	width: 660px;
	height: 300px;
	margin-top: 10px;
}

.custom .headline_area h1, .headline_area h2, #archive_intro h1 {
	font-size: 2.2em;
	line-height: 1.364em;
	text-align: center;
	background: #EBF8FF;
	display: none;
}

.custom #post-383 .entry-title, #post-369 .entry-title, #post-375 .entry-title, #post-379 .entry-title, #post-363 .entry-title {
	display: inline;
	background: transparent;
	font-weight: bold;
}

/*HIDE FEATURE BOX */
div#feature_box {
    display: none;
}