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

.custom #content_box {margin-top: 20px;}
/*---:[ START Custom Header Logo In Background ]:---*/

.custom #header { display: block; height: 117px; width: 825px; outline: none; padding-bottom: 0px;}
.custom td#logo {width:315px; float:left; margin-bottom:5px; height: 117px;}
.custom td#calltoaction {width:249px; float:right; margin-bottom:5px; height: 117px;}
.custom td#spacer {width: 576px; float: center; margin-bottom:5px; height:117px;}
.custom img.bottom {margin-top: 51px;}

/*---:[ END Custom Header Logo In Background ]:---*/

/*---:[ START Custom Drop Down Tabs ]:---*/
.custom ul#tabs li.current_page_item {border-bottom: 1px; padding-bottom: 0px; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221);}
.custom ul#tabs li, ult#tabs li ul {background:none;}
.custom ul#tabs li a {text-transform: lowercase; }
.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}
/*---:[ END Custom Drop Down Tabs ]:---*/		

---:[ START Remove Dividers ]:---*/

.custom #content { background-image: none; } 
.custom #header {border-bottom: 3px transparent; } 
.custom ul#tabs {border-bottom-color: transparent; } 
.custom #footer {border-top-color: transparent; }
.custom #footer p, #footer a {color: rgb(136, 136, 136); font-size: 10px;
}
.custom #footer a {border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; }
/*---"[ END Remove Dividers ]:---*/

/*---:[ START Custom Comments ]:---*/
.comments_closed p { display: none; }
/*---:[ END Custom Comments ]:---*/

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	color: #6c8505;
	white-space: normal;
	word-spacing: normal;
	text-align: left;
	line-height: 40px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.custom h2, h2 a{color: rgb(108, 133, 5); font-size: medium;}

/* Quick Links */

ul#quick_links {margin:0px 0px 0px; padding:0; list-style:none; font-size: 11px;}

ul#quick_links li { margin:0; padding:2px 0; line-height:14px; list-style:none; font-size:11px;}

ul#quick_links li a{ margin:0; padding:0; font-size:11px; line-height:13px; color:#6c8505; border:none;}

ul#quick_links li a:hover{ color:#344003; background-color:#e6ead3;}





/* Quick Links Blue */

ul#quick_links_blue {margin:0px 0px 0px; padding:0; list-style:none;}

ul#quick_links_blue li { margin:0; padding:9px 0; line-height:18px; list-style:none; font-weight:500; font-size: 11px; }

ul#quick_links_blue li a{ margin:0; padding:0; font-size:11px; line-height:18px; color:#075CA3; border:none;}

ul#quick_links_blue li a:hover{ color:#0099FF; background-color:#e6ead3;}





.stylegreytable {

	border: 1px solid #009933;

	background-color: #D7DFC4;

}





.stylenospacing {

	margin-top: 0;

	margin-bottom: 0;

}

.custom div.post_box.top {padding-top: 0px;}
.custom ul.sidebar_list {padding-top: 0px;}