/*
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: #eeeeee;
}
.custom #container {
    border: 1px solid #ddd;
}
.custom #page {
    background: #fff;
}

/* Sidebar Optin Box */

.custom div.optin-sb { 
	border: 1px solid #ddd;
	background-color: #ffffcc;
	padding:1em;
	margin-top: 1em;
	margin-bottom: 0.5em;
	}
.custom div.optin-sb input[type="submit"] {
	background:transparent url(/wp-content/themes/thesis/custom/images/getinstantaccess-160x29.png) no-repeat scroll 0 0;
	display:block;
	width:162px;
	height:31px;
	margin-left: auto;
	margin-right: auto;
	align: center;
	padding:0;
	}
.custom div.optin-sb arrow {
	float:left;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
	padding-top: 11px;
	}
#imageField{
    background: transparent;
    padding-top:0px;
    border: none;
    }
#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 150px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 350px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 250px;
	width: 100px;
}

/* Sales Page Styles - can be used anywhere */
.prehead {
	font-style: italic;
	}
.headline {
	color: #cc0000;
	font-size: 2.2em;
	line-height: 1em;
	font-weight: bold;
	text-align: center;
	}
.feedback {
	border: 1px solid #003399;
	background-color: #ffffcc;
	padding:.5em;
	margin: 0em 3em .5em 3em; 
	}
.feedback-title {
	color: #ffffff;
	background-color: #003399;
	padding:.5em;
	margin: .5em 3em 0em 3em; 
	}
.feedback-heading {
	color: #cc0000;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	font-weight: bold;
	text-align: center;
	}
.optin {
	border: 3px dashed;
	background-color: #ffffcc;
	padding:.5em;
	margin: .5em 3em .5em 3em; 
	}