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

/* Post Title Colors */
.custom h2 a {color: #800080; }
.custom .entry-title {color: #800080;}
.custom h2 a:hover { color: #cc99cc; }

/* Background Color */
body.custom {
    background: #fef1fe;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.0em;
    background: #33332f;
    border: 0.0em solid #3e3e3a;
}
.custom #page {
    background: #fff;
}

/* For Sales Page Testimonials */
table.testimonial {
	border-width: 1px 1px 1px 1px;
	border-style: solid solid solid solid;
	border-color: black black black black;
	border-collapse: separate;
	background-color: rgb(220, 220, 220)
}

table.testimonial td {
	padding: 10px 10px 10px 10px;
}

/* HIGHLIGHT BOX for Testimonials */
.format_text .highlight_box_cream {
	/* distance from borders to content*/
	padding: 0 1em 0 1em;
	/* spacing outside of box*/
	margin: 0 0 0 0;
	/* background color */
	background: rgb(220, 220, 220);
	/* border size style color */
	border: 1px solid #000000;
}

/* Welcome Box */
.custom div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}

/* Email Subscribe Button */
.feedburner_email input[type="submit"] {
	background:transparent url(images/button-bg.jpg) repeat-x scroll 0 0;
	border-color:#ECECEC #ADADAD #ADADAD #ECECEC !important;
	border-style:solid !important;
	border-width:1px !important;
	padding:2px;
	width:100px;
	margin-bottom: 2px;
}	
.feedburner_email input[type="text"] {
	background:#EEEEEE none repeat scroll 0 0;
	border-color:#AAAAAA #DDDDDD #DDDDDD #AAAAAA !important;
	border-style:solid;
	border-width:1px;
	color:#444444;
	font-size:1em;
}
.feedburner_email input:hover {
	border: 1px solid #000;
	border-color: #000;
	background: #F5F596;
}

/* Remove Headline Area From Nav Bar Pages */
.custom #post-63 .headline_area, .custom #post-260 .headline_area,
.custom #post-17 .headline_area { display: none; }

/* Remove Grey Bars Below Header */
.custom #header { border-bottom: 0; }

/* Change the padding of the header area on Sales Page */
.custom #post-17 { padding-top: 0em; }
.custom.flabby-arms #header { padding-top: 0em; padding-bottom: 0em; }

/* Column and Container Width Reduction for Sales Page */
custom #post-17 { width: 60em; margin: 0 auto; }
.custom.flabby-arms #container { width: 65em; }

.custom.testing #container { width: 65em; }
.custom #post-1074 .headline_area { display: none; }
.custom #post-1074 { padding-top: 0em; }
.custom.testing #header { padding-top: 0em; padding-bottom: 0em; }

/* Aweber Scrollbar Removal */
.af-form {overflow:hidden !important;}
















