/*  
Script Name: PHP Easy Contact Form
Site Designer/Developer: Chris Lentz (http://ATLChris.com)
Version: 1.1
Stylesheet: contactform.css

Built using TextMate on a Mac.

This script was created by the Chris Lentz,
you can visit him at http://ATLChris.com.

NOTES: Coding is an artform. Please respect my art by not reproducing it without written consent. I make my code
easily readable for learning purposes. Feel free to view my code as a tutorial, but please don't copy it verbatim.
Please contact the Chris Lentz at http://ATLChris.com/contact/ with any questions, comments, concerns,
or suggestions.
*/

/*----------------------------------------------------------------------------
PHP EASY CONTACT FORM CSS
-----------------------------------------------------------------------------*/

.formField {
	margin: 30px 0;
	clear: both;
	overflow: hidden;
}

.formField label.field {
	font-size: 14px;
	width: 175px;
	float: left;
}

.field {
	float: left;
}

.field input {
	border: 1px solid #cdcdcd;
	height: 18px;
	padding-top: 2px;
	padding-left: 3px;
	font-family:Arial;
	display: inline;
	color: #545454;
}

.field input.error {
	border: 1px solid #ff0000;
}

.field textarea {
	border: 1px solid #cdcdcd;
	height: 200px;
	width: 400px;
	color: #545454;
	padding: 3px;
}

.field textarea.error {
	border: 1px solid #ff0000;
}

#securityQuestion {
	font-size: 20px;
	margin: 0 0 10px 0;
}

#submitted {
	background: #545454;
	width: 75px;
	padding-bottom:5px;
	padding-top:4px;
	border: 0;
	font-size: 15px;
	color: #ffffff;
	cursor: pointer;
}

.processing {
	margin: 90px 0;
	width: 100%;
	text-align: center;
}

#successNotify {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #D6FFD8;
	border: 1px solid #A0D997;
	text-align: center;
	font-size: 14px;
	color: #436213;
	padding: 10px 0;
	margin: 10px auto;
	width: 90%;
}

#errorNotify {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #F7E5E5;
	border: 1px solid #F0C7C7;
	text-align: center;
	font-size: 14px;
	color: #852B3B;
	padding: 10px 0;
	margin: 10px auto;
	width: 90%;
}