﻿@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Light.ttf');
}

@font-face {
    font-family: 'BenchNine';
    src: url('font/BenchNine-Light.ttf');
}
.input-text{
    text-align: center;
}
html,
body {
    height: 100%;
    margin: 0;
    /*overflow: hidden;*/
    position: relative;
    background-color: white;
}

* {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.mainContent {
    background-color: white;
}

.header {
    width: 100%;
    color: white;
    height: 3.5em;
    line-height: 3.5em;
    font-size: 1em;
    vertical-align: middle;
    position: relative;
    background: rgb(12,71,106);
}

    .header > span {
        font-size: 0.5em;
        position: absolute;
        top: 1em;
        right: 1%;
    }

h3 {
    color: #0e547d;
    font-size: 2.5em;
    margin: 20px 0;
    position: relative;
    font-family: 'BenchNine', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

    h3:before {
        position: absolute;
        top: -20px;
        left: 0;
        height: 10px;
        width: 100px;
        background-color: #0e547d;
        content: "";
    }

button {
    border: 2px solid #0e547d;
    color: #0e547d;
    background: white;
    padding: 0.5em 0.7em;
    display: inline;
    cursor: pointer;
    font-size: 1.1em;
    border-radius: 0.1em;
    min-width: 10em;
}

    button:hover, button:focus {
        color: white;
        background: #0e547d;
    }

.redButton {
    border: 2px solid #800000 !important;
    color: #800000 !important;
}

    .redButton:hover, .redButton:focus {
        color: white;
        background: #800000;
    }

button:hover, button:focus {
    color: white;
    background: #0e547d;
}

.footer {
    height: 2em;
    width: 100%;
    /* background: #0e547d; */
    background: rgb(12,71,106);
}

.progressBackgroundFilter {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=60);
    -moz-opacity: 0.60;
    -khtml-opacity: 0.60;
    opacity: 0.60;
    z-index: 1005;
}

    .progressBackgroundFilter > div {
        text-align: center;
        position: relative;
        width: 100%;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
        z-index: 1006;
    }

        .progressBackgroundFilter > div > img {
            width: 10%;
            display: inline-block;
            vertical-align: middle;
            padding-top: 40vh;
        }

input[type=text], input[type=password], select, textarea, input[type^=date], input[type=number], input[type=email] {
    width: 100%;
    border-left: 0px solid #0e547d;
    border-bottom: 2px solid #0e547d;
    border-right: 0px solid #0e547d;
    border-top: 0px solid #0e547d;
    padding: 3px 5px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 1.2em;
    /* text-align: center; */
}

    input[type=text]:focus, input[type=password]:focus, select:focus, input[type=submit]:focus, textarea:focus, input[type^=date]:focus, input[type=email]:focus,
    input[type=number]:focus {
        outline: none;
        border-color: #41b883;
    }

.infoTable {
    border-collapse: collapse;
    width: 100%;
}

    .infoTable td, .infoTable th {
        /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
        border: 1px solid #0e547d;
        border-width: 1px 1px;
        padding: 0.5em;
    }

    .infoTable th {
        background-color: #0e547d;
        color: white;
        font-weight: normal;
        text-align: left;
    }

.subTitle {
    color: #0e547d;
    font-family: 'BenchNine', sans-serif;
    font-weight: 900;
    font-size: 1.3em;
    text-transform: uppercase;
    margin-right: 1em;
}

.rightBlue {
    color: #0e547d;
    font-weight: 900;
    text-align: right;
}

.leftBlue {
    color: #0e547d;
    font-weight: 900;
    text-align: left;
}

.infoCard {
    border: 2px solid #0e547d;
    padding: 1em;
    margin: 1em 0em;
    cursor: pointer;
}

    .infoCard:hover {
        background-color: #f2f2f2;
    }

.noSelect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}
/* pure-hidden-xs */
@media screen and (max-width:567px) {
    .pure-visible-sm {
        display: none !important;
    }

    .pure-visible-md {
        display: none !important;
    }

    .pure-visible-lg {
        display: none !important;
    }

    .pure-visible-xl {
        display: none !important;
    }

    .pure-hidden-xs {
        display: none !important;
    }
}
/* pure-hidden-sm */
@media screen and (min-width:568px) and (max-width:767px) {
    .pure-visible-xs {
        display: none !important;
    }

    .pure-visible-md {
        display: none !important;
    }

    .pure-visible-lg {
        display: none !important;
    }

    .pure-visible-xl {
        display: none !important;
    }

    .pure-hidden-sm {
        display: none !important;
    }
}
/* pure-hidden-md */
@media screen and (min-width:768px) and (max-width:1023px) {
    .pure-visible-xs {
        display: none !important;
    }

    .pure-visible-sm {
        display: none !important;
    }

    .pure-visible-lg {
        display: none !important;
    }

    .pure-visible-xl {
        display: none !important;
    }

    .pure-hidden-md {
        display: none !important;
    }
}
/* pure-hidden-lg */
@media screen and (min-width:1024px) and (max-width:1279px) {
    .pure-visible-xs {
        display: none !important;
    }

    .pure-visible-sm {
        display: none !important;
    }

    .pure-visible-md {
        display: none !important;
    }

    .pure-visible-xl {
        display: none !important;
    }

    .pure-hidden-lg {
        display: none !important;
    }
}
/* pure-hidden-xl */
@media screen and (min-width:1280px) {
    .pure-visible-xs {
        display: none !important;
    }

    .pure-visible-sm {
        display: none !important;
    }

    .pure-visible-md {
        display: none !important;
    }

    .pure-visible-lg {
        display: none !important;
    }

    .pure-hidden-xl {
        display: none !important;
    }
}