/******************************************************************************* MAIN COLOURS ***************************************************************************************
DARK BLUE: #003b61;
LIGHTER BLUE: #4a79a6;
LIGHT ORANGE: #d9913b;
DARK ORANGE: #bf520a;
GREY TEXT: #999999;
BLACK (MAIN CONTENT): #000;
************************************************************************************************************************************************************************************/

body {
    font-family: sans-serif;
    font-size: 100%;
    background: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: sans-serif;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    font-weight: normal;
}

h1 + h2, h2 + h3, h3 + h4, h4 + h5 {
    margin: 15px 0;
}

h1 + h2 {
    margin-top: -30px;
}

h1 {
    font-size: 4.7em;
    letter-spacing: -2px;
    color: #C10021;
}

h2 {
    font-size: 2.8em;
    letter-spacing: -1px;
    color: #231f20;
}

h3 {
    font-size: 1.8em;
    letter-spacing: -1px;
    color: #a2a2a2;
}

a, a:hover {
    color: #C10021;
    text-decoration: underline;
}


/******************************************************************************* FORMS **************************************************************************************/

form {
}

fieldset { /*to draw box round related elements*/
    border: 2px solid #999999;
    padding: 20px;
}

fieldset *:first-child {
    margin-top: 0;
}

.form_row {
    clear: both;
    width: 100%;
    padding: 15px 0;
}

.form_col {
    float: left;
    display: block;
    width: 26%;
    margin-right: 2%;
}

.form_col.form_col_input {
    width: 50%;
    margin-right: 0;
}

.form_note {
    display: block;
    font-style: italic;
}

.form_actions {
    margin: 30px 0 0 0;
}

input[type=text], input[type=password], textarea {
    width: 90%;
    padding: 6px;
    border: 1px solid #999;
    border-radius: 3px 3px;
    -moz-box-shadow: inset 3px 3px 4px #e0e0e0;
    -webkit-box-shadow: inset 3px 3px 4px #e0e0e0;
    box-shadow: inset 3px 3px 4px #e0e0e0;
}

textarea {
    height: 7em;
    padding: 8px;
    font-family: sans-serif;
}

select {
    padding: 2px;
    border: 1px solid #999;
    border-radius: 3px 3px;
    width: auto;
}

.form_col.form_col_input {
    font-size: .9em;
}

.error {
    color: #d9913b;
    font-style: italic;
}

.form_note {
    color: #999;
}

input[type="submit"] {
    color: #fff;
    text-decoration: none;
    background: #C10021;
    padding: 10px 15px;
    opacity: 0.8;
    display: table;
    margin: 30px 0;
    behavior: url(path/to/pie_files/PIE.htc);
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    opacity: 1;
}

.checkbox div .form_col.form_col_title {
    float: right;
    width: 85%;
    padding: 0;
    font-weight: 700;
    font-style: italic;
    font-size: 0.9em;
}

.checkbox div .form_col.form_col_input {
    float: left;
    width: 8%;
}

.checkbox .form_row {
    max-width: 400px;
}

#wrapper {
    margin: 0 auto;
    max-width: 800px;
    padding: 0px 5%;
}