/*
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/
*/

/*This #content_area displays aggregate rock with a dark grey background
.custom #content_area {background: #222222 url('images/background.jpg');}*/

body.custom {
background: #222222; 
background-image:url(images/background.jpg);
}

.custom #header {padding:0; border:0; height:65px;}

/*Main Page area with text displays white*/
.custom #content_box {background: #ffffff;}

/*This fills in the background color behind navigation menu */
.custom .menu {background-color:#222222;}

/*Feature box shows full width of page but only on HOME PAGE*/
.custom #feature_box {background: #669933;}


.custom h1 { margin-bottom:-0.1em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:24px; color: #000000;}
.custom h2 { margin-bottom:-0.1em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:20px; color: #222222;}
.custom h3 { margin-bottom:0.4em; margin-top:0.5em; font-family: Geneva, Arial, Helvetica, sans-serif; font-size:18px; color: #000000; text-transform:none; font-variant:normal; letter-spacing:0px;}
.custom h4 { margin-bottom:-0.1em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:18px; color: #000000;}
.custom h5 { margin-bottom:-0.1em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:16px; color: #222222;text-transform:none; }
.custom h6 { margin-bottom:-0.1em; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; color: #003300; text-transform:none; font-stretch:semi-condensed;}
.format_text ul { margin-top:2em;}


/*This gives the footer a custom background color
.custom #footer_area {background-color:#003300;}*/

/*This section gives the sidebars their custom colors and background*/

/*This gives the sidebar1 a background color*/
.custom #sidebar_1.sidebar { background-color: #FFCC00;}


/*This gives the sidebar2 a background color*/
.custom #sidebar_2.sidebar { background-color: #669933;}







