/*
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/
*/

/*.mysalespage .format_text {
font-size: 1.9em;	
}*/
body {
	background-color: #213954;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    /*padding: 0.3em;*/
    background: transparent url(http://www.democrakey.com/images/background.png) repeat-y scroll center top
   /* border: 0.4em solid #3e3e3a;*/
}

.custom #header #logo a { display: block; height: 100px; width: 920px; background: url('http://www.democrakey.com/images/header2.jpg') repeat-x; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* salespage */

.mysalespage #header {
	display: none;
}
.mysalespage #content_box {
	background: #FFF;

}
.mysalespage #header_area {
	display: none;
}

.mysalespage #page ul.menu {
	display: none;
}

.mysalespage div#sidebars {
	display: none;
}

.mysalespage div#content {
	width: 100%;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.mysalespage div.format_text h3 {
	text-align: left;
	font-weight: bold;
}

.mysalespage div#column_wrap {
	width: 100%;
}

.mysalespage div#content_box {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.mysalespage div#comments {
	display: none;
}

.mysalespage div#footer {
	display: none;
}

.mysalespage div.headline_area h1 {
	color: #000;
	font-weight: bold;
	font-variant: normal;
	text-align: center;
	font-size: 30px;
}

.mysalespage #post-214 div.format_text h2 {
	color: #000;
	font-size: 1.8em;
	text-align: center;
}

.mysalespage div#creator {
	border: 1px solid #000;
	padding-top: 0;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fdfb93;
}

.mysalespage #creator p a img.alignleft.size-full.wp-image-234 {
	margin-bottom: 2px;
	margin-right: 15px;
	border: 1px solid #000;
}

#creator h3 {
	margin-top: 5px;
}



.mysalespage p.alert {
	font-size: 20px;
	text-align: center;
}

.mysalespage #headerimg a img {
	display: none;
}

.mysalespage div#blackline {
	display: none;
}

.mysalespage {

	
}

.mysalespage #footerblackline {
	display: none;
}

.mysalespage div#page {

}

.mysalespage #container {
	border-style: none;
	border-right-style: solid;
	border-left-style: solid;
	width: 724px;
}

.mysalespage div.headline_area {
	margin-top: 30px;
}

#post-214 div.headline_area h2 {
	text-align: center;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	line-height: 115%;
}

#headernavnav ul li {
	display: inline;
	padding-right: 16px;
	font-family: "Courier New", Courier, mono;
}

#headernavnav ul li a {
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	text-transform: capitalize;
	text-decoration: underline;
}

div#headernavnav {
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.squeeze {
        margin: 1.5em auto;
        width: 800px;
}
.aweber { 
        float: right;
        width: 250px;
}


