/*
	Style sheet for form
	
	author: Steve Largaespada
	Date: 1/7/2015
	
	filename: form.css
*/

/* Form styles*/

input:focus, select:focus, textarea:focus { 
	background-color: rgb(220, 255, 220);
}

input:focus:valid { 
	background: rgb(220, 255, 220) url(../Images/go.png) bottom right no-repeat;
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain; 
	background-size: contain;
}
input:focus:invalid { 
	background: rgb(255, 232, 233) url(../Images/stop.png) bottom rightno-repeat;
	-o-background-size: contain;
 	-moz-background-size: contain; 
 	-webkit-background-size: contain; 
	 background-size: contain;
}