/*







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: #CADBDF;



}







.custom #container {



    margin-top: 0.2em;



    margin-bottom: 2em;



    padding: 0.3em;



    background: #CADBDF;



    border: 0.4em solid #CADBDF;



}







.custom #page {



    background: #fff;



}



body.custom {color:#000000;}







.custom a, .custom a:visited { color: #1A38F1; }



.salesletter #header { padding: 0; border-bottom: 0em; }

.salesletter #footer { padding-bottom: 0; border-top: 0em; }

.salesletter #footer { display: none; }

.salesletter #sidebars { display: none; border: none; }

.salesletter #tabs {display:none;}

.salesletter #content_box { background:none; }

.salesletter .comments_closed { display: none; }

.salesletter #header #logo { display: none; }

.salesletter #header #tagline { display: none; }

.salesletter #content { margin: 0 auto; float: none; }

.salesletter #content h2, .sale #content h1 { font-size:30pt; text-align:center; font-weight:bold; }

.salesletter #container { width:650px; margin-top: 1em; border: 0.2em solid #000; }

.salesletter a { color: #111; }

.salesletter a:hover { color: ; background: #f2e127; }

.salesletter #page { background: #fff; }

body.salesletter { background: #8db6b6; }

.custom li.widget ul li { margin-bottom: 1.692em }