/*
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: 200px; width: 960px; background: url('images/Banner.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/image/this is where a background gradient goes*/
body.custom {
    background: #fefae2 url(images/background.gif) repeat-x 0 0;
}

/*set left margin for posts, teasers*/
.custom #post_box {
margin: 0 2.2em 0 1.5em;}

.custom #container {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background: #fff;
    border: 8px solid #6b490f;
	width: 96em;
}


.custom #page {
background:#fff;
padding:0;
}


/*#page {background: #fff;border:.8em #6b490f;padding:0em;
}

/*.custom #container {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background: #fff
   	
}*/



/*this code does away with double line in header*/
.custom #header { border-color: #fff; }

/*this code changes the link colors in the sidebar*/
.custom a, .custom a:visited { color: #4682af;  text-decoration: none; } 
.custom a:hover { color: #4682af;  }

/*this code set the color for post headlines*/
.custom .headline_area h2 a {color: #6b490f; }, .custom .headline_area h2 a:visited {color:#3c4a52; }
.custom .headline_area h2 a:hover { color: #6b490f;   }

/*this code for page headlines*/
.custom h1 {color: #6b490f;  }

/*this code for front page headline*/
.custom h2 {color: #6b490f; }


/*this code for sidebar titles*/
.sidebar h3 {color: #6b490f;}

/*NAV BAR CODE STARTS HERE*/

/*this code creates a custom header and nav bar*/
.custom #header_area{display:none;}

.custom #nav_area {background:#6b490f; padding:0; border-bottom:2px solid ##6b490f;}
	.custom #nav_area ul {border-bottom:0em; border-left:none; border-right:none;}
		.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:.5em; background:none;}

.custom #title_area {background:#c2cfd6; padding:0; border-bottom:0px solid #c2cfd6;}
	.custom #header {border-bottom:none;}
	
/*change background color for nav menu*/
.custom ul#tabs{background:#6b490f; border-bottom:2px solid #6b490f; border-top:2px solid #6b490f; border-left:0px solid #cfdde4; width:96em; color:#cfdde4; width: 96em;}

/*give tabs or text a hover color*/

.custom ul#tabs li a:hover {background:#6b490f none repeat scroll 0 0; color:#fefae2; text-decoration:underline; }
        
		
/*change default tab color and get rid of lines around them*/
.custom ul#tabs li {background:#6b490f;border-style:none; }


/*set current tab color and text color*/
.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a
{background:#4682af; color:#fefae2; border_style:none;}

/*scoot over first nav tab and set default text color*/
.custom ul#tabs li a {
padding:1em 1em; color:#fefae2;}*/

/*NAV BAR CODE STOPS HERE*/

/*this code sets the rotator box background color*/
.custom #image_box { background-color: #fff; }

/*this code sets the image box and video box frame color*/
.custom #image_box, #video_box {
background:#fff none repeat scroll 0 0;
}


/*this code gets rid of the border under the rotator box*/
.custom #image_box {border-bottom: 0;}

