/*
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/
*/
body.custom {
	background-color: #f9f9f0;
	}
.custom #page {
	background-color: #ffffff;
	padding-top: 10px;
	}
.custom #header #logo { font-size: 2.5em; }	
.custom #header #tagline { padding: 3px 0px 10px 0px; }
.custom  #header { border: none;}
.custom #footer { border: none;}


/* Removing Laugh Lines - Gray */
.custom #container {border:0;}
.custom #feature_box {border:0; padding:0; margin:0;} /* page-bottom 1px line horizontal */
.custom #content_box {border:0; padding:0; margin:0; background:#fff; } /* content sidebars 1px vertical line */
.custom #column_wrap { border:0; padding:0; margin:0; background:#fff; }  /* content and sidebar dividing line */
.custom #sidebars {background: #fff; border:0; padding:0; margin:0;} /* left-side 1px vertical line on sidebar */
.custom #sidebar_1 {background: #fff; border:0; padding:0; margin:0; } /* right-side 1px vertical line on sidebar */
.custom #sidebar_2 {border:0; padding:0; margin:0;} /* right-side 1px vertical line on sidebar */

/*After Single Post Elements*/
/*#afterpost {
	width: 100%;
	padding: 5px;
	margin:0;
	}
#afterpost ul li {
	list-style:none;
	margin: 0px;
	}	*/
li.related {
list-style:none;
	margin: 0px;
	margin-left: -1em;
	}
.custom #sidebar_1 li {
	line-height: 1em;
	padding-left: .5em;
	}
.custom #sidebar_1 h3 {
	font-weight:bold;
	}		


