/*******************************************************************************
 AccessibilityOz [October 2012]              http://www.accessibilityoz.com.au/
 ------------------------------------------------------------------------------
 JS_F_A1: Form validation should be triggered by submission, rather than individual field events; and
 JS_F_A3: Form validation should trigger an alert then set focus on the first invalid field; and 
 JS_F_A4: Validation error messages should be programmatically inserted directly after the field they relate to, using functions of the DOM
 ------------------------------------------------------------------------------
*******************************************************************************/



/* style the "error" labels so they break underneath 
   each label/field pair, and have bright red text */
label.error, label.error strong
{
	display:block;
	width:auto;
	
	color:#d22;
}


