﻿/*
Page and Shared Layout
*/
    * {
        box-sizing: border-box; /* Combine padding into total container width calculations (for all browsers) */
        -moz-box-sizing: border-box;
        -webkit-box-sizing:border-box;
        text-decoration: none; /* Clear automatic formatting of links */
    }
    h1 {
        font-weight: normal;
        -webkit-margin-before: 0;
        -webkit-margin-after: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    body {
        padding: 0;
        margin: 0;
        border-top: 0.375em solid #363872;
        font-family: Verdana;
        font-size: 100%;
    } 
    .header-logo {
        float: left;
        width: 33.33%;
    }
    nav {
        width: 94%;
        margin: 0 auto;
        max-width: 62.5em;
    } 
    .header-title {
        float: left;
        width: 66.67%
    }
    #LogoutLnk {
        position: absolute;
        right: 5px;
        top: 15px;
        z-index: 20;
        color: #363872;
    }
/*
Header
*/
    header {
        min-height: 15em;
        width: 94%;
        max-width: 81.25em;
        margin: 0 auto;
        border-bottom: 1px dashed #E8E8E8;
        padding-top: 3.75em;
    }
    .main-title {
        font-weight: bold; 
        color: #000000;
	    font-size: 2em;
	    letter-spacing: -2px;
        margin-top: 0.67em;
        margin-bottom: 0.67em;
    }
    .main-title strong {	 
	    color: #363872;
    }
    .sub-title {
        position: absolute;
        left: 0;
        display: block;
        height: 2em;
        background-color: #E8E8E8;
        background: -webkit-linear-gradient(left, rgba(232,232,232,1), rgba(232,232,232,0)); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(right, rgba(232,232,232,1), rgba(232,232,232,0)); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(right, rgba(232,232,232,1), rgba(232,232,232,0)); /* For Firefox 3.6 to 15 */
        background: linear-gradient(to right, rgba(232,232,232,1), rgba(232,232,232,0));
        font-size: 1.5em;
        color: #000000;
    }
    .sub-title-main {
        width: 10em;
        line-height:2em;
        padding-left: 2.7em;
    }
    .header-logo img {
        height: 9.0625em;
        width: auto;
    }
    nav {
        position: relative;
    }
    .header-nav {
        position: absolute;
        top: 0.375em;
        left: 0;
        height: 3.125em;
        width: 100%;
        background-color: #F5F4F3;
        border-bottom: 1px solid #EAE8E8;
    }
    .skip { 
        position:absolute; 
        left:-10000px; 
        top:auto; 
        width:1px; 
        height:1px; 
        overflow:hidden;
    }  
    .skip:focus,
    .skip:hover,
    .skip:active { 
        background-color: #363872; 
        position: fixed; 
        left: 1px;
        width: 19.25em; 
        height: 2.5em; 
        color: #FFF;
        padding-left: 0.625em;
        line-height: 2.5em;
        z-index: 1000;
    } 

/*
Footer
*/

    footer {
        position: relative;
        background: #F5F4F3;
        height: 6.25em;
        width: 100%;
        margin-top: 4.25em;
    }

/*
**
Begin Responsive Styles for Tablet and Phone based on screen width.
Order of @media groupings cannot be changed due to inheritance.
**
*/

/*
Large Notebooks
*/

    /*@media only screen and (max-width: 1366px) {
        header h1 {
            font-size: 1.7em;
        }
        header p {
            font-size: 1.25em;
        }
    }*/

/*
Small / Low Resolution Desktop Monitors
*/

    @media only screen and (max-width: 1280px){
        .header-logo {
            display: none;
        }
        .header-title {
            width: 100%;
            text-align: center;
        }
        .sub-title {
            position: relative;
            width: 50%;
            margin: 0 auto;
            background: none;
            font-size: 1.75em;
        }
        .sub-title-main {
            padding-left: 0;
        }
    }

/*
Large Phones
*/

    @media only screen and (max-width: 768px) {
        /*
        Header
        */
            header {
                background-image: none;
            }
            header .main-title {
                font-size: 2em;
            }
            header p {
                font-size: 1.125em;
                position: inherit;
            }
            .header-title {
                width: 100%;
                clear: both;
                text-align: center;
            }
    }

