html {
    height: 100%;
    border-top: 20px solid #8F1F2A;
}

body {
    background-color: #FFFFFF;
    color: #333333;
    padding: 40px 0 0;
    margin: 0;
    font-family: "Lucida Sans", "Trebuchet MS", Arial, Helvetica, Arial, "Lucida Sans", "Trebuchet MS", Arial;
    min-height: 100%;
}

.container {
    height: 100%;
    height: 100vh;
}

.main-container {
    width: 80%;
    min-width: 80%;
    max-width: 80%;
    background-color: inherit;
    margin: 0 auto;
}

.header-logo {
    float: left;
}

.page-title {
    font-size: 16px;
    font-weight: bold;
    text-shadow: none;
    margin: 10px 10px 20px;
}

.header-title-container {
    float: right;
}
.profile-link {
    display: block;
    float: right;
    font-size: small;
    margin-top: 10px;
}


.main
{
    font-size: 12px;
}

.note {
    font-size: small;
    line-height: 30px;
    margin-top: 3px;
    margin-bottom: 1em;
    width: 80%;
    text-align: left;
}

.form {
    margin: 50px auto;
    width: 50%;
}
label, input {
    display:block;
}
#submit_continue {
    /*text and colors*/
    font-size: 14px;
    color: #00000A;
    font-family: "Lucida Sans", "Trebuchet MS", "Arial";
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    font-weight: normal;

    /*size*/
    padding: 4px 10px 4px 10px;
    margin-top: 20px;

    /*border*/
    border: 1px solid #CCCCCC;
    border-radius: 0em;

    background: #FFFFFF; /* for non-css3 browsers */

    /* gradients */
    background: linear-gradient(#FFFFFF, #CCCCCC);
}

a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
}
.clear {
    clear: both;
}
.bold {
    font-weight: 700;
}
.emphasis {
    font-style: italic;
    font-weight: 700;
}

.footer {
    background-color: #8F1F2A;
    width: 100%;
    min-height: 25vh;
    margin-top: 25vh;
}
.top-row {
    padding-top: 25px;
}
.footnote {
    width: 100%;
}
.third {
    float: left;
    width: 33%;
}
.middle {
    text-align: center;
}
.error {
    color: red;
    padding: 15px 0;
}
.small {
    font-size: 10px;
}
@media all and (max-width:800px)
{
    .third
    {
        display: block;
        float: none;
        width: 100%;
    }
}
