/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body&gt; tag 
will be appended with the "custom" class, like so: <;body class="custom"&gt;. 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/
*/

/*--- Remove Headers on Pages ---*/
	.custom #post-214 .headline_area, .custom #post-213 .headline_area,
	.custom #post-38 .headline_area, .custom #post-41 .headline_area,
	.custom #post-8 .headline_area, .custom #post-2 .headline_area,
	.custom #post-13 .headline_area, .custom #post-11 .headline_area,
	.custom #post-16 .headline_area, .custom #post-18 .headline_area,
	.custom #post-20 .headline_area, .custom #post-22 .headline_area,
	.custom #post-24 .headline_area, .custom #post-26 .headline_area,
	.custom #post-27 .headline_area, .custom #post-29 .headline_area,
	.custom #post-399 .headline_area, .custom #post-397 .headline_area,
	.custom #post-415 .headline_area, .custom #post-437 .headline_area,
	.custom #post-432 .headline_area, .custom #post-429 .headline_area,
	.custom #post-491 .headline_area, .custom #post-6 .headline_area,
	.custom #post-640 .headline_area, .custom #post-556 .headline_area, 
	.custom #post-692 .headline_area, .custom #post-700 .headline_area,
	.custom #post-524 .headline_area, .custom #post-811 .headline_area,
	.custom #post-830 .headline_area, .custom #post-1043 .headline_area,
	.custom #post-829 .headline_area, .custom #post-768 .headline_area { display: none; }	


/* make paypal form buttons a button, not an image*/
	input[type=image] {width:auto;}

/* format the header text a little differently*/
	.format_text h1 {margin:0em 0em 0em 0em; padding:0; color: #660000; line-height: 130%;font-size: 24pt; font-weight:normal;}
	.format_text h2 {margin:0em 0em 0.75em 0em; padding: 0; font-size:14pt; line-height:150%; font-weight:normal; }

/* change the feature box boarder color*/
	.custom #multimedia_box {border:none; background:#1C1C1C;}

/* remove "From the category archives" in category page i.e. Video Page*/
        .custom #archive_info {display:none;}

/* to move the featured content gallery or whatever is in the header_addon area */
	.custom #header_featured {margin-top: -14px; margin-bottom: 5px; }

/* custom feature box */
	.custom #feature_box {font-family: Helvetica, Arial, sans-serif; border:none; margin:0; padding:0; color: #660000; line-height: 130%;font-size: 16pt; font-weight:bold; background:#6C6E6D; height: 228px; } 

/* makes the 2nd nav in blogussion look right in internet explorer*/
	.custom #second_nav {*margin-right: -4em; }

/*remove box from form button graphics*/
	input[type=image] {width:auto; border:none ;}

/* the aweber sidebar widget form */
	.custom #af-form-2130955277 {padding: 0 0 0 0; margin: 0 0 0 0; }
        .custom input #af-submit-image-2130955277 .image {padding-left: 5px; margin-left: 5px; }

/* for removing the extra margin space at the bottom of each sidebar widget - keep this one Angie */
/*/.custom li.widget {margin-bottom:0 !important;}*/

/* increasing sidebars to eliminate white gap */
	.custom #sidebars { width:31.3em; }

/*WP Page Numbers position*/
.custom #wp_page_numbers {margin-left: 22em; }

/* Grey Breakout Box without Margin*/
.custom .grey_box_wo {background-color: #EAEAEA; border: 20px #EAEAEA;}

/* Grey Breakout Box with Margin*/
.format_text .grey_box {background: #EAEAEA; border: 10px solid #EAEAEA; margin-top:-0.8em; margin-bottom:0.4em; }
