@charset "utf-8";
/*================================================================================================*\
|
|	File:		contact-form.css
|
|	Author:		Matthew Lueck
|	Company:	Big Daddy's Chicks
|
|	Version		Date				Description
|	1.0.0		2009-12-23			CSS layout for contact form
|
\*================================================================================================*/

/*¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯*\
|	Global/Tag Edits
\*________________________________________________________________________________________________*/

* {
	margin: 0px;
	padding: 0px;
	/*border: none;
	outline: none;*/
}

body {
	width: 100%;
	height: 100%;
	background-color: #E4E4E4;
}


/*¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯*\
|	Wrappers
\*________________________________________________________________________________________________*/

#form_wrapper {
	display: block;
	width: 480px;
	height: 360px;
	margin: 0px auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

	#form_title {
		display: block;
		width: 480px;
		height: 35px;
		padding: 20px 0px 5px 0px;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
	}
	
	#contact_form {
		display: block;
		width: 480px;
		float: left;
		clear: both;
	}
	
		#contact_form label {
			display: block;
			width: 60px;
			float: left;
			padding: 12px 0px 2px 20px;
			font-weight: bold;
		}
		
		.error {
			display: block;
			float: left;
			padding-top: 12px;
			font-size: 11px;
			color: #990000;
		}
		
		.wrong {
			background-color: #FFDDDD;
			border-color: #990000;
		}
		
		.correct {
			background-color: #F4F4F4;
			border-color: #000000;
		}
		
		#contact_form #name,
		#contact_form #email {
			display: block;
			width: 452px;
			height: 20px;
			float: left;
			clear: both;
			margin: 0px 10px;
			padding: 2px;
			font-size: 16px;
		}
		
		#contact_form textarea {
			display: block;
			width: 452px;
			height: 96px;
			float: left;
			clear: both;
			margin: 0px 10px;
			padding: 2px;
			font-size: 16px;
			font-family: Arial, Helvetica, sans-serif;
		}
		
		#submit_holder {
			display: block;
			width: 480px;
			height: 30px;
			float: left;
			text-align: center;
			padding: 10px 0px;
		}
		
			#submit_holder .submit {
				/*display: block;*/
				padding: 2px 5px;
				margin: 0px 2px;
			}
		
	#form_message {
		display: block;
		width: 480px;
		height: 20px;
		float: left;
		clear: both;
		text-align: center;
	}
	
	#form_sent {
		display: block;
		width: 400px;
		height: 210px;
		float: left;
		clear: both;
		margin: 0px 20px;
		padding: 10px 20px;
		font-size: 11px;
		border: solid 1px #000000;
		background-color: #F4F4F4;
	}

