body {
    margin: 0 auto;
    padding: 0;
    font-family: Calibri;
}

body:not(.printed-body) {
    background-color: #F5F5F5;
}

body.printed-body{
    max-width: 1400px;
}

.super-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.header-border-container{
    border-top: 3px solid #A05;
    border-bottom: 3px solid #A05;
    padding-top: 2px;
    padding-bottom: 2px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

#ContentArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 98%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5em;
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: center;
    color: #FFF;
    background-color: #2E4986;
    padding: 1em 0;
}

.logo-container {
    width: auto;
    margin: 0;
}

.header-img {
    height: 8em;
    width: auto;
}

.company-header {
    font-size: 4em;
    font-weight: 600;
}

.sub-header {
    margin-top: .1em;
    font-size: 2em;
}

.header-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    color: #000;
    margin-bottom: .25em;
}

.center {
    text-align: center;
}

h1{
    color: #A05;
}
a {
    color: #2E4986;
}

.grey-container {
    border-radius: 5px;
    background-color: #e8e8e8;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
}

.button {
    background-color: #2E4986;
    color: white;
    border: none;
    border-radius: 1px;
    padding: .5em;
    box-shadow: 0 2px 2px 0 #888888;
    text-decoration: none;
    cursor: pointer;
}

    .button:hover {
        background-color: #A05;
    }

/*Taller select2 dropdown results*/
.select2-results {
    max-height: 400px;
}

    .select2-results > ul {
        max-height: 400px !important;
    }

/*Smaller select2 results for screens <= 700px tall*/
@media only screen and (max-height: 700px) {
    .select2-results {
        max-height: 200px;
    }
        .select2-results > ul {
            max-height: 200px !important;
        }
}

.dim-background {
    background-color: Gray;
    filter: alpha(opacity = 40);
    opacity: .4;
}

.fullscreen {
    top: 0;
    left: 0;
    z-index: 9902;
    width: 100%;
    height: 100%;
    position: fixed;
}

#skipNav a {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    #skipNav a:focus {
        position: static;
        width: auto;
        height: auto;
    } 

/* Fancy Scrollbars */
::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(255, 255, 255, 0.38);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #D5D6D2;
    background-color: #D5D6D2;
}

::-webkit-scrollbar-thumb {

    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background-color: #555555;
}

