/* fv.css
 * css stuff for forms validation
 */

 /* Modifiers */
ul#errors {
        display: none;
        margin-top: 1em;
        background-color: #FFE;
        border: 1px solid #CC9;
        padding: .3em;
        color: #C00;
        font-weight: bold;
        }       
ul#errors li {
        margin-top: .5em;
        margin-bottom: .5em;
        padding: 0;
        }
ul#errors li.heading {
        list-style-type: none;
        color: #000;
        font-weight: normal;
        font-style: italic;
        margin: .5em 0;
        padding: 0;
        }
/* Fields */
input.errHilite, select.errHilite, textarea.errHilite {
        border: 1px solid #F00 !important;
        background-color: #ffc9c9 !important;
        }
label.errHilite {
        color: #F00 !important;
        }