/**
* Form validation style sheet
* Indented for use with the Form Process and Validation Class
*
*  Feel free to edit this to cusomize the validation messages
*  Be sure to name you form with the following ID -> #formID
* 
* Author: Ben Moody
*
**/

/***** Form Validation ****/
#formID input.error{  
   background: #f8dbdb;  
   border-color: #e77776;
   float:left;
}

#formID select.error{  
   background: #f8dbdb;  
   border-color: #e77776;
   float:left;
}

#loading{
	display:none;
	height:40px;
	margin:30px 10px;
	width:300px;
}
#loading img{
	float:left;
	padding:0 20px 0 0;
}
#loading p{
	color:red;
	font-size:12px;
}
p.error_text{
        display:none;
	background-color:#F07577;
	border:1px solid red;
	color:white;
	font-size:14px;
	font-weight:bold;
	margin:10px 0;
	padding:5px;
	text-align:center;
	width:400px;
}
.msg_php{
	background-color:#75F077;
	border:1px solid green;
	color:#006102;
	font-size:12px;
	font-weight:bold;
	margin:10px 0;
	padding:5px;
	text-align:center;
	width:400px;
}
.error_php{
	background-color:#F07577;
	border:1px solid red;
	color:white;
	font-size:12px;
	font-weight:bold;
	margin:10px 0;
	padding:5px;
	text-align:center;
	width:100%;
}
.error_jquery{
	background-color:#F07577;
	border:1px solid red;
	color:white;
	font-size:12px;
	font-weight:bold;
	margin:10px 0;
	padding:5px;
	text-align:center;
	width:100%;
}

/******* /FORM *******/
