/*
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: #242424;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.6em;
    background: #33332f;
    border: 0.8em solid #A27637;
}

.custom #page {
    background: #FFEFD5;
}

/*---:[ core layout elements ]:---*/
.custom #header { border-bottom: 8px double #242424; clear: both; }
	
.custom .post_box, .teasers_box { border-top: 1px dotted #242424; clear: both; }

.custom #sidebars { border-style: solid; border-color: #242424; }
			#sidebar_1 { border-style: dotted; border-color: #242424; }
.custom #footer { color: #A27637; border-top: 8px double #242424; text-align: right; clear: both; }

/*---:[ global elements ]:---*/
.custom a { color: #A27637; text-decoration: none; }
.custom a:hover { color: #9E9381; text-decoration: none; }

.custom blockquote { border-left: 1px solid #242424; color: #9E9381; }

/*---:[ headlines and bylines ]:---*/
.custom h1, h2, h3, h6 { font-weight: normal; color: A27637}

.custom .sidebar h3 { font-variant: small-caps; letter-spacing: 2px; color: #9E9381; }
	.custom h2 a { color: #A27637; }
	.custom h2 a:hover { color: #9E9381; }

/*---:[ headline meta data (includes bylines) ]:---*/
.custom .headline_meta { font-style: italic; color: #242424; }

	.custom .headline_meta a { color: #242424; border-bottom: 1px solid #242424; }
	.custom .headline_meta a:hover { color: #9E9381; }

/*---:[ nav menu styles ]:---*/
.custom #tabs { list-style: none; border: 1px solid #242424; border-width: 0 0 1px 1px; }
	.custom #tabs li { margin-bottom: -0.1em; background: #A27637; border: 1px solid #242424; border-left: 0; float: left; }
	.custom #tabs .current_page_item, #tabs .current-cat { padding-bottom: 0.1em; background: #FFEFD5; border-bottom: 0; }
		.custom #tabs a:hover { color: #A27637; text-decoration: underline; }
.custom #tabs .rss { padding-right: 0; background: none; border: none; float: right; }
		
		
/*---:[ #header styles ]:---*/
#header #logo { font-weight: bold; }
	.custom #header #logo a { color: #A27637; }
	.custom #header #logo a:hover { color: #242424; }
.custom #header #tagline { font-weight: normal; color: #242424; }

/*---:[ tags are not targeted further because these styles need to cascade to teasers as well ]:---*/
.custom .post_tags { color: #9E9381; }
	
/*---:[ feature box ]:---*/
.custom #feature_box { background: #E6CEA0; border-bottom: 2px solid #A27637; }


/*---:[ navigation links ]:---*/
.custom .prev_next { text-transform: uppercase; letter-spacing: 2px; border-top: 2px solid #242424; color: #FFEFD5; clear: both; }
	
/*---:[ multimedia box ]:---*/
#multimedia_box { width: 100%; }
	.custom #image_box { background: #FFEFD5; border-bottom: 1px solid #242424; }
		.custom #image_box img { display: block; background: #fff; border-style: solid; border-color: #242424; }
	
		/*---:[ widget box styles ]:---*/
		.custom li.widget .widget_box { background: #ffffff; border-style: solid; border-color: #242424; }
		
/*---:[ footer styles ]:---*/
.custom #footer a { color: #242424; border-bottom: 1px solid #ccc; }
.custom #footer a:hover { color: #A27637; }

