/*
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 {border-bottom:none; height:146px; padding-top:0; padding-bottom:0; background:url(http://knowledgeaccessbooks.com/wp-content/uploads/2009/05/header-salesletter.jpg) center left no-repeat;} */

/* === HEADER === */
.custom #header { padding:0em; border:0em; }
.custom .post_box { padding:0em; border:0em; margin:0em; }
/*.custom #header #logo {display:none;}
.custom #header #tagline {display:none;}*/

/* Remove page titles from content area */
div#content div.headline_area h1 {display:none;}


/* Table Formatting */
.custom table { width:100%; padding:0px; margin:0px; border:0px #ccc solid; height:auto; }
.custom tr { padding:0px; margin:0px; height:auto; vertical-align: middle}
.custom td { padding: 0px 0px 0px 20px; margin:0px; height:auto; vertical-align: middle }
table.yellowbox { width:100%; padding:.5em; border:.1em #000 solid; margin-bottom:1.5em; height:auto; background: #F8F69F; font-family:arial,verdana,helvetica; font-size:16px; }
table.darkbox { width:100%; padding:.5em; border:.1em #000 solid; margin:0em; height:auto; background: #F8F69F; font-family:arial,verdana,helvetica; font-size:16px; margin-bottom:1.5em;}
table.sidebox { width:100%; padding:.5em; border:.1em #000 solid; margin:0em; height:auto; background: #D8ECD1; font-family:arial,verdana,helvetica; font-size:16px; }

/* Text formatting */
.custom p { color: #000; font-family:arial,verdana,helvetica; font-size:16px; }
.custom h1 { color: #C11E00; font-family:arial,verdana,helvetica; font-size:42px; font-weight:bold; margin:0em;}
.custom h2 { color: #C11E00; font-family:arial,verdana,helvetica; font-size:32px; font-weight:bold; margin: .5em 0em .5em 0em; }
.custom h3 { color: #000; font-family:arial,verdana,helvetica; font-size:26px; font-weight:bold; margin-top:-.6em; margin-bottom:0em; }
.custom h4 { color: #000; font-family:arial,verdana,helvetica; font-size:15px; font-weight:bold; margin:.8em; }
.custom h5 { position:relative; top:-1.9em; }
.custom .highlighter {background: #fefdaa ;}  /* Use with <span class=”highlighter”> */

/* .custom .headline_area h2 { display: none; } */

#content div.hr { width: 100%; height: 1px; border: 0; background-color: #999; margin-bottom: .5em; }

/* Image formatting */
.custom img.aligncenter  { margin:.5em auto; }
.custom img.alignleft { margin:0em; padding-right:2em; }
.custom img.alignright { margin:0em; }

.custom #sidebars { border:none; }
.custom #footer { border:none; }

/* Remove Comments Closed Message */
.custom .comments_closed p {display: none ;}