﻿* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #F8F8F8;
}

#header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-top: solid 8px;
    z-index: 1001;
}

#header-spaceholder {
    height: 130px;
    width: 100%;
}

#header #site-logo {
    float: left;
    margin: 35px 0 40px 55px;
}

#main-content {
    font-family: Tahoma;
    font-size: 16px;
    color: #333333;
}

    #main-content h1 {
        font-size: 24px;
        font-weight: normal;
    }

    #main-content h1, #main-content ol li .row-head {
        font-size: 24px;
        color: #FDBA31;
    }

    #main-content ol {
        list-style: none;
        line-height: 60px;
        margin-left: 0;
        padding-left: 0;
    }

    #main-content a {
        color: #3f658c;
    }

#maintablediv {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 5px #888888;
}

.logininput {
    width: 200px;
}

/* Buttons */
input[type="button"],
button {
    border: 1px solid #788089;
    background-color: #F6F7FA;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F6F7FA', endColorstr='#DAE0E6', GradientType=0 ); /* IE6-9 */
    background-image: -moz-linear-gradient(top, #F6F7FA 0%, #DAE0E6 100%); /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F6F7FA), color-stop(100%, #DAE0E6)); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, #F6F7FA 0%, #DAE0E6 100%); /* Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(top, #F6F7FA 0%, #DAE0E6 100%); /* Opera 11.10+ */
    background-image: -ms-linear-gradient(top, #F6F7FA 0%, #DAE0E6 100%); /* IE10+ */
    background-image: linear-gradient(to bottom, #F6F7FA 0%, #DAE0E6 100%); /* W3C */
    font-size: 0.8em;
    padding: 0 0.65em;
    font-family: inherit;
    position: relative;
    color: #1A2429;
    height: 22px;
    vertical-align: bottom;
}

    input[type="button"]:hover,
    button:hover {
        filter: none;
        background: #FEFEFE;
        text-decoration: none;
    }

input[type="password"] {
    height: 22px;
}

.field-validation-error {
    font-size: small;
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-errors {
    font-size: small;
    font-weight: bold;
    color: #ff0000;
}

    .validation-summary-errors ul {
        list-style: none;
    }

.message-success {
    font-size: small;
    font-weight: bold;
}

.message-warning {
    font-size: small;
    font-weight: bold;
    color: #ff0000;
}