/*
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/   44443f
*/
/*remove title from all posts
.custom #content h1 {font-size: 0;}*/
/* This portion places the custom background */
body.custom { background: #3f3f3f; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #7f7f7f; border: 0.4em solid #959589; }

		.custom #page { background: #fff; }

/* Custom Header */
/*.custom #header {background: url(images/cs_banner_900x150.jpg) no-repeat; width: 888px; height: 140px; }*/
.custom #header { border-bottom:none;
height:165px;
padding-top:0;
padding-bottom:0;
background:url(images/cs_banner_900x150.jpg)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

/* Custome Footer */
.custom #footer{background: url(images/cs_footer.jpg) no-repeat; width: 885px; height: 70px; }

/* Yellow colored box around text */
.divyellow {width:90%; display:block; padding:.5em; color:#000000; background:#F7FFB4; border:1px solid #FFEF67; text-decoration:none; }

/* Blue colored box around text */
.divblue {width:90%; display:block; padding:.5em; color:#000000; background:#e3f0f2; border:1px solid #a1d8e1; text-decoration:none; }

/* Form - Blue colored box around text */
.divformblue {width:96%; display:block; padding:.5em; color:#000000; background:#e3f0f2; border:1px solid #a1d8e1; text-decoration:none; }

/* Drop Cap */
.custom .format_text .drop_cap {
  font-family: Verdana;
  
  font-size: 3.2em;
  color: #9E9E9E;
}

/* Change Menu Color on Order Appraisal #F7FFB4*/
ul.menu li.tab.tab-1 a {background:#FFCC00;}
ul.menu li.tab.tab-1 a {font-weight: bold;}



/*--- Remove Headers on Pages ---*/
/*.custom #post-619 h1 { display: none; }*/
.custom #post-580 h1 { display: none; }
/*.custom #post-218 h1 { display: none; }*/
.custom #post-13 h1 { display: none; }
.custom #post-12 h1 { display: none; }
.custom #post-3 h1 { display: none; }