/* STYLES FOR FORMS */

/* Styles used for focus */
.formObjHover { 
	background-color:#EEE; 
	border:solid 1px #666; 
	color:#333;
}

/* Form objects styles for CSS2 Supporting browsers */
input[type=text]:focus, input[type=file]:focus, input[type=submit]:focus, 
input[type=reset]:focus, textarea:focus { 
	background-color:#EEE; 
	border:solid 1px #666; 
	color:#333;
}
input[type=button]:hover, input[type=submit]:hover { 
	background-color:#EEE; 
	border:solid 1px #666; 
	color:#333;
}