/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/
/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 150px; width: 960px; background: url('images/headerfinal.png') no-repeat; outline: none;}
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline {display:none; }
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0;}

/*this code sets a background color and image*/

body.custom {
    background: #e4f2fa;
}

/*this code gets rid of the top margin*/
.custom #header_area .page {
padding-top:0;}

/*this code sets a background color for the content area*/
.custom #content
{ background: #fff;}

.custom #content_box {
background: #ffffff;
}

/*this code helps the transparency of the header*/

.custom .full_width .page {
margin:0 auto;
padding-left:0em;
padding-right:0em;
}


/*this code sets the full-width header background color or graphic*/
.custom #header_area {
background: transparent url('images/headergradient.gif') repeat scroll 0 0; 
padding-top:0;
}

/*nav bar customization, this sets the default color for the nav bar*/

.custom #nav_area {background:#ffd753; padding:0; border-bottom:0px solid #3daae7; border-top: 0px solid #000000;}
	.custom #nav_area ul {background: #ffd753; border-bottom:none; border-left:none;padding-bottom:0px; padding-top:0px; text-decoration:none;}
		.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none; text-decoration: none;}

	.custom #header {border-bottom:none; padding-bottom:0;}
	

/*give tabs a hover color*/

.custom ul#tabs li a:hover {background:transparent; color:#3daae7; none repeat scroll 0 0; text-decoration:underline;
}
        
		
/*change tab color and get rid of lines around them*/
.custom ul#tabs li {background:transparent;border-style:none;}

/*float nav bar on top of header*/
ul#tabs {
display:block;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin-left:0;
margin-top:0em;
z-index:500;
}

/*set current tab color and text color*/
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a, .custom ul#tabs li.home_item a {
background:#3daae7;
color:#fff;
}

/*scoot over first nav tab and set menu text color*/
.custom ul#tabs li a {
padding:0.818em 1em; color:#505050;}


/*get rid of dotted link box*/

:-moz-any-link:focus {
  outline: none;
}

/*set nav bar text to lowercase*/

.custom #tabs a {
text-transform:lowercase;}


