/*
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-color: #002065;
 }

.custom #page { width: 773px; background: #002065; margin-top:10px; padding:0;}

/*---:[ header ]:---*/
.custom #header { border:none; height:212px; background: #FFFFFF url('images/header_curves.gif') no-repeat left top; padding:0; margin:0; }

.custom #header ul {list-style:none;}

/*---:[ HEADER navigation ]:---*/

.custom #header #headernav { margin-left:425px; margin-bottom:0; padding-bottom:0;}
#headerlist li{display: inline; list-style-type: none; padding-right: 5px;}


/*---:[ navigation ]:---*/
.custom #header #mainnav {float:right; margin-top:12px; margin-right:4px;}
#navlist li{display: inline; list-style-type: none; padding-right: 33px;}
.navselected li{padding-right:0px;}

#nav_logo {padding: 8px 0px 0px 30px; float:left;}
#nav_home {padding: 12px 0px 0px 27px; float:left;}

/*---:[ nav menu styles ]:---*/
#header ul {list-style:none;}
.custom #tabs {border:0;}

/*---:[ banner ]:---*/
.custom #banner {clear: both; padding:20px 0px 0px 30px; float:left;}

/*---:[ content box ]:---*/
.custom #content_box {background:#FFFFFF; padding-left:25px;width:748px; }
.custom #content {width:453px;}

/*---:[ sidebar ]:---*/
#subscribe {float:right; background: #f5f5f5; margin-right:30px; margin-top:43px;width:240px; height:130px;}
.custom #sidebars {border:none;}
.custom #sidebar_1 {border:none;}
.custom #sidebars {background: #f5f5f5; margin-right:30px; width:240px;}
/*---:[ footer styles ]:---*/
.custom #footer  { border:none; }

.custom #footer { background: #000030 url('images/footer_curves.gif') no-repeat left top; height: 65px; }


.custom #footer #sitemap-legal {float:left;  padding: 20px 0px 0px 10px; }
.custom #footer #copyright {padding: 9px 19px 0px 0px;  text-align: right;}
.custom #footer #address {float:left; padding: 11px 0px 0px 70px;}
.custom #footer #email {float:left; padding: 15px 0px 0px 50px;}
.custom #footer #phone { float:left; padding: 15px 0px 0px 20px;}
.custom #footer #fax { float: left; padding: 15px 0px 0px 50px;}

/*---:[ Typography ]:---*/
.custom a:hover {font-weight: normal;}
.custom #header #headernav { color: #4f71ba; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 10px;
}
.custom #header #headernav a:link{color:#FFFFFF;}
.custom #header #headernav a:visited{color:#FFFFFF;}
.custom #header #headernav  a:hover{color:#6699cc;}


.custom #header #mainnav a:link{font-family: Verdana; font-size: 12px; color: #339933;}
.custom #header #mainnav a:visited{	font-family: Verdana; font-size: 12px; color: #339933;}
.custom #header #mainnav a:hover {color: #003366; font-weight:normal;}
.navselected  a:link, a:visted, a:hover{color: #003366; font-weight: bold; }

.custom #subscribe {font-size:1.3em;line-height:1.385em;}
.custom #subscribe h3, #subscribe ul {padding-left:5px;}
.custom #subscribe h3 {margin-bottom:0.692em;}
.custom #subscribe ul li {margin-bottom:0.692em;}
.custom #footer #sitemap-legal  a:link{color:#FFFFFF; text-decoration:none;}
.custom #footer #sitemap-legal  a:hover{color:#6699cc;}
.custom .entry-title {color:#3f7d30; font-size: 24px;}
.custom .entry-title a {color:#3f7d30;}

.custom #header h3 { font-variant: normal; letter-spacing:0;font-family: Arial, Helvetica, sans-serif; font-size: 16px;	line-height: 16px; 	color: #177425;	font-weight: normal;}
.custom #sidebars h3 { font-variant: normal; letter-spacing:0;font-family: Arial, Helvetica, sans-serif; font-size: 16px;	line-height: 16px; 	color: #177425;	font-weight: normal;}
.custom #sidebars a:link {text-decoration:none;}
.custom #sidebar_1 a:link {text-decoration:none;}
.custom #sidebar_1 a:hover {text-decoration:underline;}
.custom #sidebar_1 p { font-size: 10px;}

.custom #footer a {text-decoration:none;}
.custom #footer a:link {text-decoration:none;}
.custom #footer {color: #3b5ca3; font-size: 10px; text-align: left; font-family:Verdana, Arial, Helvetica, sans-serif;}
.custom #email a{ color: #3399ff; }



.custom #copyright {color:#999999;}

/* Define the clear div to offset the link floats */
div.clear {
clear: both;
height: 1px;
width: 1px;
}




