/*  -------------------------------------------------------------
    -------------------------------------------------------------
    CSS CODED BY - clearpixel.com.au - 2014
    -------------------------------------------------------------
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

/*  -------------------------------------------------------------
    FORMS STYLING
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

/*  General Form Styling
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

#content .contentForm {
    clear: both;
    width: 100%;
}

#content .contentForm p {
    clear: both;
    padding: 6px 0 16px 0;
}

#content .contentForm h6 {
    clear: both;
    padding: 10px 0 2px 0;
}

#content .contentForm label {
    line-height: 1.25em;
}

#content .contentForm label.require {
    padding-right: 10px;
    background: url("../../../images/icons/require.gif") top right no-repeat;
}

#content .contentForm input,
#content .contentForm textarea,
#content .contentForm select {
    display: block;
    padding: 10px 16px;
    width: 100%;
    line-height: 1.5em;
    color: #262626;
    border: 1px #000 solid;
    outline: none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

#content .contentForm textarea {
    height: 160px;
}

#content .contentForm .checkbox {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: auto;
}

#content .contentForm .submitBox {
    float: right;
    padding: 5px 0 0 0;
}

#content .contentForm .submitBox .submitBtn {
    display: block;
    padding: 10px 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.25em;
    color: #fff;
    border: 1px #000 solid;
    background: #000;
}

#content .contentForm .submitBox .submitBtn:hover {
    cursor: pointer;
    color: #000;
    background: none;
}


/*  Form Validate Errors
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   */

#content .contentForm label.error {
    display: block;
    margin: 0;
    padding: 6px 16px;
    font-size: 0.8em;
    font-weight: bold;
    color: #fff;
    background: #d41111;
}


/*  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;
}