/* 
 * $Id: forms.css 268 2010-02-15 01:38:47Z obrienjw $
 *
 * Using for reference:
 * http://articles.sitepoint.com/article/fancy-form-design-css/
 */

fieldset {
   padding: 0.5em;
   margin: 0;
}

legend {
   margin-left: 1em;
   font-weight: bold;
}

fieldset span label {
   margin-top: 0.5em;
}

fieldset.submit {
   border-style: none;  
}

label {
   display: block;
}

fieldset textarea {
   font-family: sans-serif;
   font-size: 10pt;
   padding: 0.1em;
   margin: 0;
}

fieldset span input {
   font-family: sans-serif;
   font-size: 10pt;
   margin: 0;
   padding: 0.1em;
}

fieldset span input.cf_invalid {
   background: #ED767B; /* red logo color reduced to 50% saturation */
}

fieldset span input.cf_missing {
   background: #FEE57F; /* yellow logo color reduced to 50% saturation */
}

fieldset span textarea.cf_missing {
   background: #FEE57F; /* yellow logo color reduced to 50% saturation */
}

.cf_normal {
}

.cf_error {
   margin: 1em 0 1em 0;
   font-style: italic;
}

.cf_error ul {
   margin: 1em;
}


