/* 
    Document   : validator
    Created on : 18-Sep-2011, 09:16:28
    Author     : john
    Description:
        Purpose of the stylesheet follows.
*/
.validation-passed { 
  /* This style is applied to input fields after successful validation */
    background-color: #99cc99 !important; 
}
.validation-advice { 
    /* This style is applied to the error messages */
    background-color: #cc9999; 
    color: white; 
    margin: 3px; 
    padding: 3px; } 

.validation-failed { 
    /* This style is applied to input fields after validation failed */
    background-color: #cc9999; 
}
