/*
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: #413B3C; }				<--- 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: #360000; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #C6C0B0; }
		
		
		
		/* Change the color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover { background: #977C7C; }
/* Change the font color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover { color: white; }

/* Change the sidebar header away from caps. Take this out to revert to caps. */
.custom h3 {letter-spacing:0px; font-variant: normal; text-transform:capitalize;}

/* Change select widget color. THIS IS NOT CONNECTED TO ANYTHING */
.custom .widget_text {color: #3A3633;}

/* Post title color */
.custom .headline_area h2 a {
color:#670707;
}

/* Custom header */
.custom #header { border-bottom:none;
height:180px;
padding-top:0;
padding-bottom:0;
background:url(http://www.stateofnormal.com/images/heweyMASTw.gif)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }


/*Post Header Colour* put  in ones you want, this is teaser title */
.teaser a{color:#670707;}


/* Links within text. THIS IS NOT CONNECTED TO ANYTHING */
.custom .page_item a, .custom .page_item a:visited { color: #413B3C; }
.custom .page_item a:hover { color: #413B3C; }



/*---:[ Ads 125x125]:---*/
.custom #custom_box {
	padding: 5px;
	background: inherit;
	border-bottom: 0px solid #A9A0A0;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.custom #ads125 {
	margin-left: 10px;
}
.custom #ads125 a img {
	width:125px;
	height:125px;
	margin:2px;
	border:2px solid #A9A0A0;
	padding:1px;
	float:left;
}
.custom #ads125 a:hover img {
	border-color: #977C7C;
}

.custom #sidebar_1 {background:#C6C0B0 none repeat scroll 0 0;}

.custom #sidebar_2 {background:#C6C0B0 none repeat scroll 0 0;}