/**********/
/* Form CSS Classes
/**********/
/* Makes all text fields and buttons have sizzle */
input {
    font-family: Arial, Helvetica, sans-serif;
    color: #060;
    background: #DFDFDF;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    font-weight: bold;
    font-size: 12px
    }
.input_red {
    font-family: Arial, Helvetica, sans-serif;
    color: #900;
    background: #DFDFDF;
    border-top: 2px solid #900;
    border-left: 2px solid #900;
    border-right: 2px solid #900;
    border-bottom: 2px solid #900;
    font-weight: bold;
    font-size: 12px
    }
/* Only used for IE browsers for radio buttons, DO NOT USE with Netscape */
.emptyClass {
    font-family: Arial, Helvetica, sans-serif;
    background: #FFF;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none
    }
/**********/
/* Fieldset & Legend CSS Classes
/**********/
/***/
/* Regular Fieldset/Legend classes (for standard grouping)
	/***/
fieldset {
    /* Entire border around fieldset */
    background: #FFF;
    border: 1px dotted #060;
    margin-left: 1em;
    margin-right: 1em;
    padding: 1em
    }
fieldset legend {
    /* Legend title box */
    color: #060;
    background: #FFF;
    font-variant: small-caps;
    padding: 0.1ex 0.5ex;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    font-weight: bold
    }
fieldset td {
    /* any text within fieldset */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px
    }
.fieldsetCheckbox {
    /* Used on aboutField.php for orange checkbox alert */
    text-align: center;
    width: 65%;
    background: #DFDFDF;
    border: 1px solid #F60;
    /* orange color: FF6600 */
    margin-left: 0;
    margin-right: 0;
    padding: 0.5em;
    font-weight: bold
    }
.fieldsetError {
    /* for regular errors (no bullets) */
    width: 90%;
    text-align: center;
    background: #FFF;
    border: 1px solid #900;
    margin-left: 1em;
    margin-right: 1em;
    padding: 1em
    }
.fieldsetErrorBulleted {
    /* for bulleted errors */
    width: 85%;
    text-align: left;
    background: #FFF;
    border: 1px solid #900;
    margin-left: 1em;
    margin-right: 1em;
    padding: 1em
    }
.legendError {
    /* Legend title box */
    color: #900;
    background: #FFF;
    font-variant: small-caps;
    padding: 0.1ex 0.5ex;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    font-weight: bold
    }
.fieldsetTextError {
    /* any text within fieldset */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #900
    }
textarea {
    font-family: Arial, Helvetica, sans-serif;
    color: #060;
    background: #DFDFDF;
    border-top: 1px solid gray;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    font-weight: bold;
    font-size: 12px
    }