html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Arial, Helvetica, sans-serif;
    background-color: white;
    font-size: 12pt;
    margin: 0 0 0 0;
    color: #014fa2;
}

.topBanner {
    width: 1000px;
    height: 152px;
    margin: 0 auto 20px;
    background-image:  url("../Images/banner.png");
    background-repeat: no-repeat;
}

.menuBar {
    width: 100%;
    background-color: #E16C1C;
    color:white;
    padding: 20px 0;
}

.menuBar a {
    color: white;
    text-decoration: none;
}

.menuBar a:hover {
    text-decoration: underline;
}

h1 {
    font-weight: 400;
    font-size: 2.074rem;
}

.container {
    margin: 0 auto;
    width: 1000px;
}

.buttonsMedium {
    display: none;
}

.buttonsNarrow {
    display: none;
}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 5px 0;
    border: solid 2px #CCC;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 18px;
    transition: box-shadow 0.3s, border 0.3s;
}
input[type="text"]:focus,
input[type="text"].focus {
    border: solid 2px #666;
    box-shadow: 0 0 5px 5px #CCCCFF;
}

@media only screen and (max-width: 1100px) {
    .container {
        width: 700px;
    }
    .topBanner {
        width: 700px;
        height: 106px;
        background-size: 700px 106px;
    }
}

@media only screen and (max-width: 800px) {
    .container {
        width: 500px;
    }
    .topBanner {
        width: 500px;
        height: 76px;
        background-size: 500px 76px;
    }
    .modal-content {
        width: 500px;
    }
    .buttonsWide {
        display: none;
    }
    .buttonsMedium {
        display: block;
    }
    .buttonsNarrow {
        display: none;
    }
}

@media only screen and (max-width: 550px) {
    .container {
        width: 300px;
    }
    .topBanner {
        width: 300px;
        height: 46px;
        background-size: 300px 46px;
    }
    .modal-content {
        width: 300px;
    }
    .dateHeader {
        font-size: 10px;
    }
    .buttonsWide {
        display: none;
    }
    .buttonsMedium {
        display: none;
    }
    .buttonsNarrow {
        display: block;
    }
}


.floatRight {
    float:right;
}

.floatLeft {
    float:left;
}

.btn {
    background-color:#E16C1C;
    border: 1px solid #632F0C;
    border-radius: 4px;
    color: white;
    padding: 6px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background-color: #AF5416;
}

.btnBlue {
    background-color: #363A93;
    border: 1px solid white;
}

.btnBlue:hover {
    background-color: #272B6B;
}

/* for error info */

pre {
    font-size: 12px;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

/* clearfix */

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }

.clearfix {
    display: inline-block; }

/* start commented backslash hack \*/
* html .clearfix {
    height: 1%; }

.clearfix {
    display: block; }

/* close commented backslash hack */
