/*
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/
*/


/* HELPERS
*****************************************************************************************************/
.custom .left { float:left; }
.custom .right { float:right; }
.custom .center { text-align:center; margin:0 auto; display:block; }
.custom .clear{background:none;border:0;clear:both;display:block;float:none;font-size:0;list-style:none;margin:0;padding:0;overflow:hidden;visibility:hidden;width:0;height:0}


/* HEADER
*****************************************************************************************************/
.custom #header {
	border:0;
	padding:10px 0 20px;
}


/* WRAPPERS
****************************************************************************************************/
body.custom {
	background: #8ae9ff url('images/body-bg.jpg') repeat-y top center;
}


/* CONTACT FORM - PAGE
****************************************************************************************************/
form fieldset {padding:10px;display:block;border:1px solid #eee;margin-bottom:18px;-khtml-border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius: 5px;}
form fieldset legend{font:bold 11px Arial,Sans-serif;color:#333;padding:0px 3px 0px 3px;}
form fieldset legend span{color:#A80500;}

.page_contact_form ul {
	list-style-type:none;
	margin:0;
}

	.page_contact_form ul li {
		float:left;
		display:inline;
		clear:both;
		margin:0 0 20px 0;
		list-style:none;
		width:600px;
	}

	.page_contact_form span.wpcf7-not-valid-tip, .page_contact_form div.wpcf7-validation-errors {
		width:190px;
		background:#FFC2C8;
		color:#A80500;
		border:1px solid #A80500;
		padding:0 4px;
	}
	
	.page_contact_form div.wpcf7-validation-errors {
		margin:0 0 20px 0;
		padding:10px;
		width:653px;
		font-size:14px;
		font-weight:bold;
	}
	
	.page_contact_form div.wpcf7-mail-sent-ok {
		margin:0 0 20px 0;
		padding:10px;
		width:653px;
		font-size:14px;
		font-weight:bold;
		background:#D3FFB9;
		color:#166F00;
		border:1px solid #166F00;
	}
	
	.page_contact_form label {
		float:left;
		display:inline;
		margin:0 20px 0 0;
		width:120px;
		text-align:right;
		font-size:14px;
	}
	
		.page_contact_form label span {
			color:#A80500;
		}

	.page_contact_form input, .page_contact_form textarea {
		padding:5px;
		background:#f6f6f6;
		border:none;
		border:1px solid #ddd;
		width:225px;
		float:left;
		display:inline;
	}
	
		.page_contact_form input:focus, .page_contact_form textarea:focus {
			background:#fff;
		}
	
	.page_contact_form li.small input, .page_contact_form span.aux-input input {
		width:75px;
	}
	
	.page_contact_form span.aux-input {
		margin:0 0 0 10px;
		float:left;
	}
	
		.page_contact_form span.aux-input input {
			margin:0 0 0 5px;
			float:right;
		}

	.page_contact_form textarea {
		width:440px;
	}
	
	.page_contact_form li.submit input {
		margin:5px 0 0 140px;
		font-size:14px;
		font-weight:bold;
		background:#EFEFEF;
		border:2px solid #ddd;
		width:100px;
		color:#111;
		cursor:pointer;
	}