/*
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/
*/
.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; }

body.custom {
    background: #800000;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #eee; <!--inner page border-->
    border: 0.4em solid #fff; <!--outer page border-->
}

.custom #page {
    background: #eee;
}

.formsubmit {
  
  width:70px;
  height: 40px;
  padding:2px 0;
  margin:2px 0 0;
  border:1px #white solid;
  background:#red;
  font:  20px georgia, tahoma,helvetica, sans-serif ! important;
  color: white;
  cursor:pointer;
}

.formsubmit:hover {
   background:#lime;
   }
   
.collect-mail {
	width:200px;
    height:30px;
	padding:4px ! important;
    margin:2px 0 0;
    border:1px #800000 dotted;
	background-color:#fff;
	font:  18px helvetica,sans-serif ! important;
    font-weight: bold ! important;
	color: #012326;
	}
	
.custom .menu {
font-weight: bold;
}

.custom .menu .rss {
color:" 2e2e2e;
}

.custom #header {padding-top: 0.5;}

.headline_area h2 {font-weight: bold;}

.custom h1.entry-title { background:#f2f2f2 none repeat scroll 0 0; color:#000; padding:0.3em 0; text-align:center; font-weight:bold;}

body.custom {
        background-color: #2e2e2e;
}

.entry-title {
font-weight: bold;
font:20px ! important;
font-family: tahoma, verdana, helvetica, sans-serif;
}

.logo {
horizontal-align:center;
}



