/*
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/
*/

/* Custom Header */
.custom #header #logo a { display: block; height: 137px; width: 997px; background: url('images/header2.png') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0}
.custom #header { padding: 0; padding-bottom: 0; }

/* Customizing Body */
body.custom {
	background: #b3c754 url('images/gradient.png');
	background-repeat: repeat-x; 
}
.custom #page {
    background: #fff;
}
.custom #container {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
border: 1px solid #b3c754;
}

/* Nav Bar */
.custom ul#tabs {
background: #bcc801;
}
.custom ul#tabs li {background: #bcc801;}

.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background: #fff;}

.custom ul#tabs .rss a { padding-right: 16px;
margin-right: 14px;
}

.custom ul#tabs li a {color: #fff;}

.custom ul#tabs .current_page_item a, #tabs .current-cat a
{ color:#111111;
}

/* Feature Box */
/* Feature Box Styling */
.custom #feature_box {
	margin-top:5px;
background: #fff;
border-bottom: none;
}
#my-feature-box-bottom {
	width:629px;
	font-size:14px;
}
#my-feature-box h2 {
	color:#800000;
	font-size:20px;
	letter-spacing:1px;
	margin-bottom:3px;
}
#feature-box-column-left {
	width:33%;
	float:left;
margin-top:6px;
	margin-left:1px;
}
#feature-box-column-middle {
	width:33%;
	float:left;
margin-top:6px;
}

#feature-box-column-right {
	width:33%;
float:left;
	margin-left:4px;
margin-top:6px;
}

.custom #nsignup {
background:#f6fea9; 
padding:9px 9px 15px 15px;
font-family:georgia; 
color:#456a00;
font-size:16px;
}

.custom input.btn {
    border: none;
    background: url("http://rawvibrantliving.com/wp/wp-content/themes/thesis_151/custom/images/go.png") no-repeat top left;
}
.custom div.mc-field-group input{
width:200px;
padding: 4px 0px 4px 0px;
}
.custom div.mc-field-group {
padding: 15px 0px 8px 0px;
}

.custom h2 a {
font-style: bold;
font-family:georgia; 
color:#456a00; 
font-size:20px;
}

.custom .teaser a.teaser_comments {
color:#456a00;
}

.custom .teaser a.teaser_link {
color:#c45118;
}

.custom .headline_area h1, .headline_area h2 {
color:#456a00;
}