/*
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: #00a06b;
	

}


/* This line sets up our clickable background image based on the site title's link */

.custom #header #logo a { display: block; height: 150px; width: 960px; background: url('images/Review_Guide_Header.gif') 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 { height: 0; }

/* 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 #content_box {background-color:#faf0e6;}

.custom #header { padding: 0; background-color:#6b4226;}

.custom #footer {border-top-color:#666666}

.custom #column_wrap {border-right:solid 1px; border-color:#666666}

.custom #content {border-left:solid 1px; border-color:#666666}

/* Widget Customizations */

.custom .widget {
border-bottom:1px solid #555555;
}

.custom #sidebar_1 H3 {
text-align:center;
border-color:#444;
}

.custom #sidebar_2 H3 {
text-align:center;
border-color:#444;
}


.custom ul.similar-posts {font-size:12px}

/* Feature Box Design */

.custom #feature_box {
background-color:#ffffff;
font-size:14px;
font-family:Georgia, "Times New Roman", Times, serif;
color:#6b4226;
background-color:#faf0e6;
}

/* Caption Box Customization */

.custom #welcome_message {
float:left;
width:360px;
}

.custom #closing_message {
float:left;
width:620px;
padding-top:20px;
padding-bottom:20px;
}

.custom #guide_buttons {
float:left;
width:630px;
padding-left:60px;
}

.custom #big_guide_button {
float:right;
width:250px;
align:center;
}

.custom .wp-caption {
background:transparent;
font-size:18px;
}

/* Footer Customization */

.custom #footer {
background:6b4226;
padding:0.5em 0; 
border-top:1px solid #bbd;
}

.custom #footer div.col {
float:left;
height:16em;
background:#6b4226;
margin:5px 0 0 0;
padding-left:10px;
padding-top:20px;
text-align:left;
width:31.0em;
}

.custom #footer div.col.Footer1 {
width:155px;
color:#faf0e6;
}

.custom #footer div.col.Footer2 {
width:485px;
color:#faf0e6;
}

.custom #footer div.col.Footer3 a {
width:380px;
color:#faf0e6;
font-size:12px;
}

.custom #footer div.col.Footer3 p {
color:#faf0e6;
}

/* Nav Menu Customization */

.custom .menu {
background-color:#00a06b;
}
.custom ul.menu li a {background-color:#00a06b; color:#faf0e6; text-decoration:none; letter-spacing:1.5px;}
.custom ul.menu li a:hover {background-color:#faf0e6; color:#00a06b;}
.custom ul.menu li:hover ul {background-color:00a06b; text-decoration:none } 

/*Teasers Customization*/

.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   border-top: 0;}


/* Archive Customization */

#archive_info {display:none;}