/*
Contact Form / VBalidation Styles

This is the contact form */	
#contactForm{
	width: 600px;
	margin: 0 auto;
}

/* this is the main negative/error feedback
(appears above the form) */
#formFeedback.error{
	font-size:1.4em;
	margin: 10px 5px;
	padding: 10px 20px 25px 45px;
	font-weight: bold;
	color: #333333;
	background-image: url(../images/ico-error.gif);
	background-repeat: no-repeat;
	}
	
	
/* this is the main positive/success feedback
(appears above the form) */
#formFeedback.success{
	font-size:1.4em;
	margin: 10px 5px;
	padding: 15px 20px 25px 55px;
	font-weight: bold;
	color: #333333;
	background-image: url(../images/ico_success.gif);
	background-repeat: no-repeat;
	background-position: 2px 7px;
	border: solid 3px #cccccc;
	}
	
/* 


this is the inline invalid feedback message class
(appears under form field element) */	
div.error{
	font-size:11px;
	color:#ff0000;
	font-weight:bold;
}
/* 


this is the actual form element that is invalid */	
textarea.error, input.error, select.error{
 	border: solid 1px #ff0000;
}


/* 
SPAM protection 
Our form has an input field named 'fullname'
this field is hidden via css.

if the posted form has a value for 'fullname' we assume a bot filled it out. and dont process the data.
a normal user with a css enabled browser will never see it
*/
.fullnameContainer{
	display:none;
}

.req {
	font-weight:bold;
	color:#FF0000;
	padding:5px;
	font-size:14px;
}
