/* -------------------------------------------------------------- 
      validation.css
   * Sets up some default styling of jquery.validation plugin  
-------------------------------------------------------------- */

/* Validate errors. */
input.error, textarea.error {
	background:none;
	padding:0;
	border:1px dashed #FF3300;
	margin:0;

}
form.formValidate label.error, label.error {
	/* remove the next line when you have trouble in IE6 with labels in list */
	display: none;
	background:none;
	padding:0;
	border:none;
	color:#FF3300;
	margin:0;
	
	font-weight:normal;
}
div.error { display: none; }

