/*  -------------------------------------------------------------
    -------------------------------------------------------------
    CSS CODED BY - clearpixel.com.au - 2012
    -------------------------------------------------------------
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

/*  -------------------------------------------------------------
    FORMS STYLING
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */


/*  General Form Styling
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

#content .contentForm {
    width: 450px;
}

#content .contentForm tr td {
    display: table-cell;
    vertical-align: top;
    padding-bottom: 18px;
}

#content .contentForm tr td.require {
    width: 90px;
}

#content .contentForm tr td label {
    float: left;
    margin-top: 8px;
    font-size: 0.9em;
    color: #504f4f;

}

#content .contentForm table tr td.require label {
    background: url("../../../images/icons/require.gif") top right no-repeat;
    padding-right: 10px;
}

#content .contentForm table tr td input,
#content .contentForm table tr td textarea {
    padding: 7px 9px;
    width: 340px;
    font: 12px Arial, Helvetica, Sans-serif;
    line-height: 1.5em;
    color: #4f4f4f;
    border: 1px #d9d7d6 solid;
    background: #d9d7d6;
}

#content .contentForm table tr td textarea {
    height: 110px;
}

#content .contentForm table tr td input:focus,
#content .contentForm table tr td textarea:focus {
    background: none;
    border-color: #d9d7d6;
}

#content .contentForm .submitBox {
    float: right;
    padding: 0;
}


/*  Form Validate Errors
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

#content .contentForm label.error {
    display: block;
    margin: 4px 0 0 0;
    padding: 4px 0 2px 20px;
    color: #ee4034;
    background: url("../../../images/icons/msg_error.gif") no-repeat 0 4px;
}


/*  Form Messages (Error/Success))
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */
    
#content .contentForm .formError,
#content .contentForm .formSuccess {
    margin: 5px 5px;
    padding: 4px 10px;
    font: 0.9em;
    text-align: left;
    border: 1px solid #aaa;
    border-left: none;
    border-right: none;
}

#content .contentForm .formError h6,
#content .contentForm .formSuccess h6 {
    padding: 5px 0 0 0;
    font-weight: bold;
}
    
#content .contentForm .formError {
    background: #f6db5a;
    border-color: #e5ca47;
}

#content .contentForm .formSuccess {
    background: #6fb558;
    border-color: #5fa349;
}

#content .contentForm .formSuccess h6 {
    color: #fff;
}