/* ==========================================================================
   Table of Contents
   ========================================================================== 
:: Base
:: Typography
:: Header & Footer
:: Grid
:: Login Template
:: Buttons
:: Forms
:: First Time User
:: Profile Area
:: Left Sidebar
:: Right Content Area
:: Status Messages and Modals
:: Tour
*/

/* ==========================================================================
   Base
   ========================================================================== */
html, body {
    height: 100%;
}

body {
    padding-top: 95px;
}

html {
    background-color: #f7f7f7;
}

@font-face {
    font-family: 'alternategothic2_btregular';
    src: url("/assets/fonts/alternate_gothic_no2_bt-webfont.eot");
    src: url("/assets/fonts/alternate_gothic_no2_bt-webfont.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/alternate_gothic_no2_bt-webfont.woff") format("woff"), url("/assets/fonts/alternate_gothic_no2_bt-webfont.ttf") format("truetype"), url("/assets/fonts/alternate_gothic_no2_bt-webfont.svg#alternategothic2_btregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.center {
    text-align: center;
}

a:hover {
    text-decoration: none;
}

.small {
    font-size: 11px;
}

a:hover, a:active, a:focus {
    outline: 0;
}

.none {
    display: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h2 {
    font-size: 54px;
    text-transform: uppercase;
    font-family: "alternategothic2_btregular";
    font-weight: normal;
    margin: 20px 0 10px 0;
    letter-spacing: 1px;
}

.loginTemplate h2 {
    color: #fff;
    -webkit-text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
    text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
    margin: 20px 0 10px 0;
}

.firstHospitalHolder h2 {
    font-size: 52px;
    color: #cdcdcd;
    -webkit-text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5), 0px -1px 0px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5), 0px -1px 0px rgba(0, 0, 0, 0.3);
    margin: 0px 0 10px 0;
    line-height: 1em;
}

h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-family: "alternategothic2_btregular";
    letter-spacing: 0.5px;
    font-weight: normal;
    color: #555;
    -webkit-text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}

h4 {
    font-family: "alternategothic2_btregular";
    font-weight: normal;
    font-size: 18px;
    color: #666;
}


/* ==========================================================================
   Header & footer
   ========================================================================== */
.headerHolder {
    width: 100%;
    height: 95px;
    position: fixed;
    top: 0;
    z-index: 99;
    background: #003b7d url(/assets/images/bg_header.png) 0 0 repeat;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

header {
    width: 100%;
}
    header ul
    {
        padding-left: 10px;
    }
    header h1 {
        margin: 0;
        display: inline-block;
        float: left;
    }

        header h1 a {
            width: 280px;
            height: 95px;
            background: url(/assets/images/logo.png) 0 0 no-repeat;
            display: inline-block;
            margin-left: 40px;
        }


/*Navigation*/
nav {
    display: inline-block;
}

    nav ul {
        margin: 0;
    }

        nav ul li {
            display: inline-block;
        }

            nav ul li a {
                font-family: "alternategothic2_btregular";
                font-size: 22px;
                color: #a3aec4;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin: 0 20px 0 20px;
                text-decoration: none;
                height: 95px;
                line-height: 95px;
                -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.75);
                text-shadow: 1px 1px rgba(0, 0, 0, 0.75);
                padding-top: 27px;
            }

                nav ul li a:hover {
                    color: #fff;
                }

a.activeNav {
    color: #ffcf06;
    border-top: 8px solid #ffcf06;
}

/*User Info*/
.userInfo {
    float: right;
    color: #fff;
    margin-right: 30px;
}

    .userInfo ul {
        list-style: none;
        margin: 20px 0 0 0;
        font-size: 13px;
    }

        .userInfo ul li {
            display: inline-block;
            margin: 0 7px 0 7px;
        }

            .userInfo ul li a {
                color: #ffcf06;
            }

            .userInfo ul li.logoutLink a {
                color: #dadada;
            }

.iconInfo a {
    /*width: 16px;
    height: 16px;
    background: url(/assets/images/icon_info.png) 0 0 no-repeat;
    text-indent: -9999px;*/
    overflow: hidden;
    position: relative;
   
}

/*Footer*/
.footerHolder {
    width: 100%;
    height: 86px;
    position: fixed;
    bottom: 0;
    background-color: #fff;
}

    .footerHolder.notFixed {
        height: 86px;
        z-index: 10;
        position: relative;
        background-color: #fff;
    }

footer {
    font-family: "alternategothic2_btregular";
    font-size: 18px;
    line-height: 86px;
    margin-left: 40px;
}

    footer p {
        display: inline-block;
        color: #120606;
        margin: 0;
    }

    footer ul {
        list-style: none;
        display: inline-block;
        margin: 0;
    }

        footer ul li {
            display: inline-block;
        }

            footer ul li a {
                padding: 0 18px 0 18px;
                color: #bbbbbf;
                text-decoration: none;
            }

                footer ul li a:hover {
                    color: #120606;
                }


/* ==========================================================================
   Grid
   ========================================================================== */
.grid6, .grid14 {
    margin: 0 10px 0 10px;
    display: inline-block;
}

.grid6 {
    width: 340px;
}

.grid14 {
    width: 820px;
}

.grid16 {
    width: 940px;
    margin: 0 auto;
}

.span1 {
    margin-left: 70px;
}

.mainContentHolder {
    width: 100%;
    overflow: hidden;
}


/* ==========================================================================
   Login Template
   ========================================================================== */
.loginTemplate {
    background: url(/assets/images/bg_login_template.jpg) top center no-repeat;
}

@media screen and (min-width: 1600px), screen and (min-height: 985px) {
    .loginTemplate {
        -moz-background-size: 100% 100%;
        -o-background-size: 100% 100%;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
    }
}

.loginFormBox {
    width: 260px;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    border: 8px solid rgba(0,0,0,0.5);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.termsBox {
    width: 600px;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    border: 8px solid rgba(0,0,0,0.5);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.existingUsers {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    background-color: #003672;
    color: #d4dee9;
    padding: 15px 0 15px 0;
}

    .existingUsers a {
        color: #d4dee9;
    }

.loginFormHolder .small {
    color: #fff;
    -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
    margin-top: 20px;
}

    .loginFormHolder .small a {
        color: #ffcf06;
    }


/* ==========================================================================
   Buttons
   ========================================================================== */
.loginButton {
    font-size: 22px;
    color: #70560d;
    font-weight: bold;
    background-color: #ffba03;
    display: block;
    padding: 13px 0 13px 0;
    text-decoration: none;
    margin-bottom: 50px;
    text-align: center;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffe609), color-stop(1, #ffb803) );
    background: -moz-linear-gradient( center top, #ffe609 5%, #ffb803 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe609', endColorstr='#ffb803');
    background-color: #ffe609;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #b78e1c;
}

    .loginButton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffb803), color-stop(1, #ffe609) );
        background: -moz-linear-gradient( center top, #ffb803 5%, #ffe609 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb803', endColorstr='#ffe609');
        background-color: #ffb803;
    }

    .loginButton:active, .blueButton:active, .buttonGray:active, .uploadButton:active {
        position: relative;
        top: 1px;
    }

.blueButton {
    font-size: 12px;
    font-weight: bold;
    background-color: #005bbb;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 6px 10px 6px 10px;
    border: 1px solid #00244e;
    border-radius: 5px;
    -webkit-text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.8);
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.8);
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #005bbc), color-stop(1, #004697) );
    background: -moz-linear-gradient( center top, #005bbc 5%, #004697 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005bbc', endColorstr='#004697');
}

    .blueButton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #004697), color-stop(1, #005bbc) );
        background: -moz-linear-gradient( center top, #004697 5%, #005bbc 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004697', endColorstr='#005bbc');
        background-color: #004697;
    }

.buttonGray {
    border: 1px solid #b6b6b6;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    -webkit-text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
    background-color: #e9e9e9;
    padding: 0px 12px 0 12px;
    text-decoration: none;
    color: #666;
    margin: 3px 3px 0 10px;
    height: 28px;
    line-height: 28px;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fefefe), color-stop(1, #d9d9d9) );
    background: -moz-linear-gradient( center top, #fefefe 5%, #d9d9d9 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#d9d9d9');
}

    .buttonGray:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d9d9d9), color-stop(1, #fefefe) );
        background: -moz-linear-gradient( center top, #d9d9d9 5%, #fefefe 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d9d9d9', endColorstr='#fefefe');
    }

.buttonGray2 {
    font-size: 11px;
    float: right;
    margin: 7px 7px 0 0;
}

.whiteButton {
    width: 116px;
    height: 34px;
    line-height: 34px;
    background-color: #f9f9f9;
    border: 1px solid #d7d7d7;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
    margin-right: 6px;
}

    .whiteButton:hover, .darkGrayButton:hover {
        background-color: #fff;
        border-color: #b9b9b9;
        color: #d64000;
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    }

.darkGrayButton {
    width: 88px;
    height: 27px;
    line-height: 28px;
    display: inline-block;
    text-decoration: none;
    background-color: #dadada;
    border-radius: 3px;
    border: 1px solid #999;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #444;
    -webkit-text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.5) inset;
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.5) inset;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d7d7d7), color-stop(1, #c6c6c6) );
    background: -moz-linear-gradient( center top, #d7d7d7 5%, #c6c6c6 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7d7d7', endColorstr='#c6c6c6');
    background-color: #d7d7d7;
    /*border-left: none;*/
}

    .darkGrayButton:hover {
        /*    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d6d6d6), color-stop(1, #acacac) );
  background:-moz-linear-gradient( center top, #d6d6d6 5%, #acacac 100% );
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6d6d6', endColorstr='#acacac');
  background-color:#d6d6d6;*/
        background-color: #fff;
        border-color: #b9b9b9;
        color: #d64000;
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    }

a.activeDarkGrayButton, a.activeDarkGrayButton:hover {
    background: none;
    background-color: #f1f1f1;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
    filter: none;
}

.firstButton, .firstButton1 {
    border-radius: 3px 0px 0px 3px;
    border-left: 1px solid #999;
}

.lastButton, .lastButton1 {
    border-radius: 0px 3px 3px 0px;
}


.closeButton {
    position: absolute;
    top: 11px;
    right: 11px;
    display: block;
    width: 32px;
    height: 32px;
    background-color: #f7a411;
    border: 1px solid #af6a00;
    border-radius: 3px;
    text-indent: -9999px;
    background: url(/assets/images/icon_close.png) 9px 9px no-repeat;
}

    .closeButton:hover {
        background-color: #af6a00;
    }

.closeButtonModal {
    position: absolute;
    top: 11px;
    right: 11px;
    display: block;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    text-indent: -9999px;
    background: #fff url(/assets/images/icon_close_gray.png) 8px 8px no-repeat;
}

    .closeButtonModal:hover {
        background-color: #d8d8d8;
    }

.tourButton {
    position: absolute;
    z-index: 200;
    bottom: 80px;
    right: 80px;
    background-color: #00ccff;
    color: #000;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 5px;
    font-size: 14px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

    .tourButton:hover {
        background-color: #fff;
    }

.uploadButton {
    display: block;
    float: right;
    background-color: #e5e5e5;
    border: 1px solid #808080;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    -webkit-text-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 3px;
    margin: 11px 11px 0 0;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fefefe), color-stop(1, #d8d8d8) );
    background: -moz-linear-gradient( center top, #fefefe 5%, #d8d8d8 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#d8d8d8');
}

    .uploadButton:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d8d8d8), color-stop(1, #fefefe) );
        background: -moz-linear-gradient( center top, #d8d8d8 5%, #fefefe 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8d8d8', endColorstr='#fefefe');
        background-color: #d8d8d8;
    }

.predictButton {
    display: block;
    height: 25px;
    line-height: 25px;
    background-color: #0055b5;
    border: 1px solid #003b7d;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 0 15px 0 15px;
    border-radius: 4px;
    float: right;
    position: relative;
    top: 7px;
    left: 0px;
}

    .predictButton:hover {
        background-color: #7cc171;
        border-color: #528f48;
    }

.buttonErrorClose {
    background: url(/assets/images/button_error_close.png) 0 0 no-repeat;
    display: block;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
    overflow: hidden;
    float: left;
    margin: 14px 10px 0 0;
}

.hospitalIcon {
    background: url(/assets/images/hospital_icon.png) 0 0 no-repeat;
    display: block;
    width: 20px;
    height: 23px;
    text-indent: -9999px;
    overflow: hidden;
    float: left;
    margin: 14px 10px 0 0;
}



/* ==========================================================================
   Forms
   ========================================================================== */
form {
    text-align: left;
}

legend {
    display: none;
}

input {
    width: 100%;
    padding: 8px 0 8px 0;
    text-indent: 6px;
    border-radius: 4px;
    border: 1px solid #b9b9b9;
    -webkit-box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1) inset;
    color: #666;
}

    input:focus {
        border-color: #1d93ca;
    }

label {
    color: #5c5c5c;
    font-size: 18px;
}

.ctrlHolder {
    margin-bottom: 20px;
    position: relative;
}

.inputError input {
    border-color: #f4998e;
}

.inputError label, .inputError input {
    color: #f4998e;
}

.errorNotiifcation {
    background-color: #d64000;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    padding: 3px 7px 3px 7px;
    border-radius: 4px;
    -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 265px;
    top: 31px;
    /*min-width: 115px;*/
    display: none;
    white-space: nowrap;
}

    .errorNotiifcation:after {
        width: 0px;
        height: 0px;
        content: "";
        left: -4px;
        position: absolute;
        top: 6px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-right: 5px solid #d64000;
    }

a.forgotPassword {
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 12px;
    color: #1870d2;
    display: none;
}

.inputError .errorNotiifcation, a.forgotPassword {
    display: block;
}

input[type='checkbox'] {
    width: auto;
    height: auto;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.wideInput {
    width: 290px;
}

.narrowInput {
    width: 85px;
}

.inlineInput {
    display: inline-block;
    margin-right: 20px;
}

.checkBoxCtrlHolder {
    position: relative;
    top: -10px;
}

.blockLabel {
    display: block;
}

.inputConfirmation .confirmationNotiifcation {
    display: inline-block;
}

.confirmationNotiifcation {
    color: #166c23;
    font-size: 14px;
    margin-left: 10px;
    background: url(/assets/images/icon_input_confirmation.png) 0 0 no-repeat;
    text-indent: 30px;
    height: 24px;
    display: none;
}

.profileLeft label {
    position: absolute;
    top: 30px;
    font-size: 10px;
    text-transform: uppercase;
}

.profileLeft .wideInput {
    width: 281px;
}

.profileLeft input {
    font-size: 15px;
    padding: 9px 0 9px 0;
    position: relative;
    top: 1px;
}

.profileLeft .ctrlHolder {
    position: relative;
}

.ctrlUpload {
    width: 350px;
    height: 62px;
    position: relative;
    background-color: #eee;
    border-radius: 5px;
}

    .ctrlUpload input {
        opacity: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        cursor: pointer;
    }

    .ctrlUpload a {
        z-index: -1;
    }

.selectedFile {
    color: #666;
    line-height: 62px;
    text-indent: 20px;
    float: left;
}

/* Profile form */

.pacerProfile.profileLeft2 {
    clear: none;
    margin: 0 auto;
    float: none;
}

    .pacerProfile.profileLeft2 > h2 {
        float: none;
    }

.profileWrap {
    margin-bottom: 30px;
}

    .profileWrap > h2 {
        font-size: 21px;
        color: #555555;
        float: left;
        width: 195px;
        text-align: right;
        padding-right: 45px;
        margin-top: 0;
    }

.formWrap {
    width: 640px;
    float: left;
    border-radius: 4px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    padding: 30px;
}

    .formWrap label {
        font-size: 11px;
        color: #5c5c5c;
        text-transform: uppercase;
        padding-left: 6px;
    }

    .formWrap input,
    .formWrap select {
        border: 1px solid #b9b9b9;
        border-radius: 5px;
        height: 33px;
        line-height: 33px;
        font-size: 15px;
        color: #666666;
        padding: 0;
        width: 100%;
    }

    .formWrap select {
        background: #f9f9f9 url("/assets/images/icon_dropdown.png") no-repeat scroll 135px -2px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        text-indent: 0.01px;
        -ms-text-overflow: '';
        -o-text-overflow: '';
        text-overflow: '';
        padding-left: 6px;
        padding-top: 7px;
        padding-bottom: 6px;
        height: 20px;
        line-height: 1em;
        outline: none;
        box-sizing: content-box;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
    }

        .formWrap select:focus,
        .formWrap select:active {
            outline: none;
        }

        .formWrap select::-moz-focus-inner {
            border: 0;
        }


    .formWrap .row {
        margin-bottom: 20px;
    }

.form-group {
    position: relative;
    float: left;
    margin-right: 30px;
    width: 300px;
}

.personalInfo .form-group,
.contactInfo .form-group {
    margin-right: 12px;
    width: 205px;
}

.form-group.last {
    margin-right: 0;
}

.prepend {
    display: table;
}

    .prepend span {
        display: table-cell;
        width: 40px;
        background-color: #b9b9b9;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        text-align: center;
    }

    .prepend input {
        width: 100%;
        display: table-cell;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.form-group.email {
    margin-right: 40px;
}

.form-group.hospital {
    width: 490px;
    margin-right: 20px;
}

.form-group.bedCount {
    width: 125px;
}

.form-group.street {
    width: 100%;
}

.form-group.state {
    width: 145px;
}

.form-group.zip {
    width: 135px;
}

.form-group .button {
    font-size: 12px;
    color: #666666;
    font-weight: bold;
    line-height: 2.667;
    -webkit-text-shadow: 0.5px 0.866px 0px rgb( 255, 255, 255 );
    text-shadow: 0.5px 0.866px 0px rgb( 255, 255, 255 );
    text-decoration: none;
    text-align: center;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
    background-color: #D7D7D7;
    background-image: -moz-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 100%);
    position: absolute;
    right: 0px;
    top: 24px;
    width: 63px;
    height: 29px;
}

    .form-group .button:hover {
        border-color: rgb( 109, 130, 154 );
        background-color: #82B5E8;
        background-image: -moz-linear-gradient( 90deg, rgb(130,181,232) 0%, rgb(193,213,234) 100%);
        background-image: -webkit-linear-gradient( 90deg, rgb(130,181,232) 0%, rgb(193,213,234) 100%);
        background-image: -ms-linear-gradient( 90deg, rgb(130,181,232) 0%, rgb(193,213,234) 100%);
        color: rgb( 0, 59, 125 );
        -webkit-text-shadow: 0.5px 0.866px 0px rgb( 255, 255, 255 );
        text-shadow: 0.5px 0.866px 0px rgb( 255, 255, 255 );
    }

.profileWrap.update {
    margin-left: 240px;
}

    .profileWrap.update input[type="submit"] {
        border: 1px solid #d17b00;
        border-radius: 4px;
        background-color: #EA8A01;
        background-image: -moz-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
        background-image: -webkit-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
        background-image: -ms-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
        width: 100%;
        height: 49px;
        font-size: 16px;
        color: #FFF;
        font-weight: bold;
        line-height: 2;
        text-align: center;
        -webkit-text-shadow: 0px 1px 1px #000;
        text-shadow: 0px 1px 1px #000;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .profileWrap.update input[type="submit"]:hover {
            background-color: #CA7700;
            background-image: -moz-linear-gradient( 90deg, rgb(202,119,0) 0%, rgb(246,163,45) 100%);
            background-image: -webkit-linear-gradient( 90deg, rgb(202,119,0) 0%, rgb(246,163,45) 100%);
            background-image: -ms-linear-gradient( 90deg, rgb(202,119,0) 0%, rgb(246,163,45) 100%);
        }


/* ==========================================================================
   First Time User
   ========================================================================== */
.firstHospitalHolder {
    margin-top: 100px;
}

    .firstHospitalHolder img {
        float: left;
        margin-right: 40px;
    }

    .firstHospitalHolder label {
        font-size: 14px;
    }

    .firstHospitalHolder h2 + p {
        margin: 0 0 30px;
    }

    .firstHospitalHolder p {
        font-size: 13px;
        color: #5c5c5c;
        margin-bottom: 20px;
    }

    .firstHospitalHolder .blueButton {
        line-height: 41px;
        font-size: 13px;
        padding: 0 16px;
        float: right;
        margin-right: 28px;
    }

/* ==========================================================================
   Profile Area
   ========================================================================== */
.profileAreaHolder {
    width: 100%;
    height: 82px;
    padding-top: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    color: #333;
    position: relative;
    z-index: 11;
}

.profileLeft {
    float: left;
    background-color: #f2f2f2;
    height: 38px;
    line-height: 38px;
    margin: 7px 0 0 40px;
    clear: both;
    border-radius: 5px;
}

.profileRight {
    float: right;
    margin: 10px 40px 0 0;
}

.profileCtrlUl {
    list-style: none;
    margin: 0 5px 0 10px;
    padding: 0;
    display: inline-block;
}

    .profileCtrlUl li {
        display: inline-block;
        position: relative;
    }

.iconEdit a, .iconCopy a, .iconTrash a {
    width: 27px;
    height: 16px;
    display: block;
    float: left;
    text-indent: -9999px;
    position: relative;
    top: 6px;
}

.iconEdit a {
    background: url(/assets/images/icon_edit.png) 0 0 no-repeat;
}

.iconCopy a {
    background: url(/assets/images/icon_copy.png) 0 0 no-repeat;
}

.iconTrash a {
    background: url(/assets/images/icon_trash.png) 0 0 no-repeat;
}

.profileCtrlUl li span, .recordsCtrlUl li span {
    position: absolute;
    font-weight: bold;
    background-color: #000;
    padding: 5px 10px 5px 10px;
    line-height: 12px;
    color: #fff;
    top: -33px;
    left: -120%;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 12px;
}

    .profileCtrlUl li span:after, .recordsCtrlUl li span:after {
        width: 0;
        height: 0;
        content: "";
        left: 42px;
        position: absolute;
        bottom: -5px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid black;
    }

.hospitalCtrlUl {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

    .hospitalCtrlUl li {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

.loadHospital {
    background: url(/assets/images/icon_dropdown.png) 97px -1px no-repeat;
    text-indent: -15px;
}

.addHospital {
    background: url(/assets/images/icon_hospital_2.png) 88px -1px no-repeat;
    text-indent: -20px;
    margin-right: 0;
}

.loadHospital:hover {
    background-position: 97px -37px;
}

.addHospital:hover {
    background-position: 88px -37px;
}

.loadHospitalDropdownUl, .loadHospitalDropdownUl2 {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 40px;
    list-style: none;
    width: 243px;
    background-color: #fff;
    border: 1px solid #b9b9b9;
    border-radius: 0 0 5px 5px;
    padding: 21px 0 10px 0;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

    .loadHospitalDropdownUl li, .loadHospitalDropdownUl2 li {
        border-bottom: 1px solid #eaeaea;
        clear: both;
        width: 100%;
    }

        .loadHospitalDropdownUl li:first-child, .loadHospitalDropdownUl2 li:first-child {
            border-top: 1px solid #eaeaea;
        }

        .loadHospitalDropdownUl li a, .loadHospitalDropdownUl2 li a {
            text-decoration: none;
            padding: 10px 15px 10px 15px;
            display: block;
            color: #333;
        }

        .loadHospitalDropdownUl li:hover, .loadHospitalDropdownUl2 li:hover {
            background-color: #d7d7d7;
            border-color: #b9b9b9;
        }

.whiteButtonClick {
    height: 40px;
    z-index: 10;
    position: relative;
    border-bottom: none;
    background-color: #fff;
    border-radius: 3px 3px 0 0;
    border-color: #b9b9b9;
    color: #d64000;
    background-position: 97px -37px;
}

    .whiteButtonClick:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.profileAreaHolder select {
    font-size: 11px;
}


/* ==========================================================================
   Left Sidebar
   ========================================================================== */
.leftSidebar {
    float: left;
    width: 297px;
    border-right: 1px solid #ccc;
    background-color: #e6e5e5;
    position: relative;
    z-index: 1;
    overflow: hidden;
    overflow-y: scroll;
}

.fluRecordsHolder {
    margin: 25px 18px 25px 39px;
}

    .fluRecordsHolder h3 {
        display: inline-block;
        float: left;
        margin-top: 1px;
        margin-bottom: 13px;
    }

.fluRecordsUl {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    float: right;
    position: relative;
}

    .fluRecordsUl li {
        display: inline-block;
    }

.iconAdd {
    background: transparent url(/assets/images/icon_add.png) 10px 0px no-repeat;
    text-indent: -10px;
}

    .iconAdd:hover {
        background-position: 10px -28px;
    }

.iconEdit2 {
    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 72px -4px transparent;
    text-indent: -10px;
}

    .iconEdit2:hover {
        background-position: 72px -40px;
    }

.mutedButton {
    opacity: 0.5;
    cursor: default;
}

    .mutedButton:hover {
        background-color: inherit;
        color: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
    }

.noFluRecords {
    clear: both;
    text-align: center;
    margin-top: 74px;
    float: left;
    width: 100%;
    color: #737373;
}

.yearlyRecord {
    clear: both;
    float: left;
    background-color: #f3f3f3;
    height: 44px;
    line-height: 44px;
    border: 1px solid #c0c0c0;
    border-radius: 3px 3px 0 0;
    width: 100%;
}

    .yearlyRecord p {
        margin: 0;
        font-weight: bold;
        text-indent: 20px;
        font-size: 14px;
        float: left;
    }

.fluRecordsHolder .yearlyRecord p {
    display: block;
}

.fluRecordsHolder .yearlyRecord button {
    font-size: 12px;
}

.recordsCtrlUl {
    list-style: none;
    margin: 0 10px 0 0;
    padding: 0;
    float: right;
}

    .recordsCtrlUl li {
        display: inline-block;
        position: relative;
    }

        .recordsCtrlUl li a {
            font-size: 12px;
            text-decoration: none;
            color: #d64000;
        }

.iconImport {
    background: url(/assets/images/icon_import.png) 0 15px no-repeat;
    text-indent: 20px;
}

.recordsCtrlUl .iconTrash {
    position: relative;
    top: -1px;
}

.monthlyRecords, .hintsHolder {
    clear: both;
    float: left;
    background-color: #fff;
    width: 100%;
    margin: 0 0 20px 0;
    border-left: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    font-size: 12px;
    padding: 0 0 20px 0;
    border-radius: 0 0px 3px 3px;
    list-style: none;
}

    .monthlyRecords li {
        float: left;
        border-bottom: 1px solid #ddd;
        width: 82%;
        margin: 0 9% 0 9%;
        padding: 10px 0 10px 0;
    }

    .monthlyRecords .dt, .monthlyRecords .dd {
        display: inline-block;
    }

    .monthlyRecords .dt {
        clear: both;
        margin: 0 0 0 0px;
        width: 180px;
        line-height: 25px;
        float: left;
        position: absolute;
    }

    .monthlyRecords .dd {
        margin: 0 0px 0 0;
        width: 60px;
        line-height: 25px;
        position: relative;
        left: -3px;
        float: right;
    }

    .monthlyRecords .dd, .monthlyRecords .dt {
        min-height: 26px;
    }

.recordHeadline {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    float: left;
}

.recordHeadlineRight {
    text-align: right;
    font-weight: normal;
    float: right;
}

.monthlyRecords input {
    width: 43px;
    padding-top: 5px;
    padding-bottom: 5px;
    float: right;
}

    .monthlyRecords input:focus {
        background-color: #ffea90;
    }

.recordHeadline {
    margin: 0;
    border-radius: 3px 0px 0px 3px;
    padding: 0 0 0 5px;
    width: 100px;
}

.recordHeadlineRight {
    border-radius: 0px 3px 3px 0px;
    padding: 0 5px 0 0;
    width: 58px;
}

.recordHeadlineWrap p.focusHeadline, .recordHeadlineWrap p.unFocusHeadline {
    padding: 4px;
    margin: 0;
}

.unFocusHeadline {
    padding: 4px;
}

.recordHeadlineWrap {
    background-color: #fcde60;
    width: 100%;
    height: 22px;
    border-radius: 4px;
}

.recordHeadlineWrapUnfocused {
    background-color: #e6e5e5;
}

.hideSidebarButton {
    background: url(/assets/images/icon_hide_sidebar.png) 0 50% no-repeat;
    display: block;
    width: 33px;
    height: 100%;
    position: absolute;
    left: 298px;
    top: 170px;
    text-indent: -999px;
    overflow: hidden;
}

    .hideSidebarButton:hover, .showSidebarButton:hover {
        background-color: #bdc9d6;
        background-position: -30px 50%;
    }

.showSidebarButton {
    background: url(/assets/images/icon_show_sidebar.png) 0 50% no-repeat;
    display: block;
    width: 33px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 177px;
    text-indent: -999px;
    overflow: hidden;
}

.noProfile.hideSidebarButton,
.noProfile.showSidebarButton {
    top: 95px;
}

.editRecordsUl {
    position: absolute;
    width: 88px;
    background-color: #fff;
    z-index: 10;
    border: 1px solid #888888;
    border-top: none;
    border-radius: 0 0 3px 3px;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

    .editRecordsUl li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

        .editRecordsUl li a {
            text-decoration: none;
            font-size: 12px;
            color: #666;
            font-weight: bold;
            display: block;
            text-align: left;
            padding: 6px 0 6px 0;
            text-indent: 13px;
        }

            .editRecordsUl li a:hover {
                background-color: #ededed;
                color: #d64000;
            }

.darkGrayButtonActive {
    border-color: #888;
    color: #d64000;
    border-radius: 3px 3px 0 0;
    border-bottom: none;
    background: #fff url("/assets/images/icon_dropdown.png") no-repeat scroll 72px -40px;
}

    .darkGrayButtonActive:hover {
        border-color: #888;
    }

.green {
    background: url(/assets/images/dot_green.png) 0 0 no-repeat;
    width: 11px;
    height: 11px;
    float: right;
    margin: 3px 20px 0 0;
}

.yellow {
    background: url(/assets/images/dot_yellow.png) 0 0 no-repeat;
    width: 11px;
    height: 11px;
    float: right;
    margin: 3px 20px 0 0;
}

.gray {
    background: url(/assets/images/dot_gray.png) 0 0 no-repeat;
    width: 11px;
    height: 11px;
    float: right;
    margin: 3px 20px 0 0;
}


/* ==========================================================================
   Admin Center Left Sidebar
   ========================================================================== */
.adminCenter.leftSidebar {
    z-index: 1;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
}

    .adminCenter.leftSidebar > div {
        margin: 25px 18px 25px 39px;
    }

    .adminCenter.leftSidebar h3 {
        font-size: 24px;
        display: block;
        float: none;
    }

    .adminCenter.leftSidebar h4 {
        font-family: Arial, 'Helvetica Neue', sans-serif;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: normal;
        color: #000000;
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        -webkit-text-shadow: 0px 1px 1px rgb( 255, 255, 255 );
        text-shadow: 0px 1px 1px rgb( 255, 255, 255 );
    }

        .adminCenter.leftSidebar h4 span.icon-expand {
            height: 12px;
            width: 12px;
            position: absolute;
            left: 0;
            top: 4.5px;
            background: url(/assets/images/expand.png) 0 0 no-repeat;
        }

        .adminCenter.leftSidebar h4.open span.icon-expand {
            background-image: url(/assets/images/collapse.png);
        }

        .adminCenter.leftSidebar h4:hover {
            color: #004590;
            cursor: pointer;
        }

            .adminCenter.leftSidebar h4:hover span.icon-expand {
                background-position: 0 -12px;
            }

    .adminCenter.leftSidebar ul {
        margin: 0 0 0 20px;
        padding: 0;
    }

        .adminCenter.leftSidebar ul > li {
            list-style: none;
            line-height: 34px;
            height: 34px;
            border-bottom: 1px solid #c4c4c4;
            border-top: 1px solid #f3f2f2;
            padding: 0;
            margin: 0;
        }

            .adminCenter.leftSidebar ul > li:first-child {
                border-top: none;
            }

            .adminCenter.leftSidebar ul > li:last-child {
                border-bottom: none;
            }

            .adminCenter.leftSidebar ul > li a {
                color: #333333;
                font-size: 13px;
                font-weight: normal;
                text-decoration: none;
                -webkit-text-shadow: 0px 1px 1px rgb( 255, 255, 255 );
                text-shadow: 0px 1px 1px rgb( 255, 255, 255 );
            }

            .adminCenter.leftSidebar ul > li.active a {
                color: #d64000;
            }

            .adminCenter.leftSidebar ul > li a:hover {
                color: #004590;
            }

/* ==========================================================================
   Admin Center Tables
   ========================================================================== */
table.injuries {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #4C4C4C;
    -webkit-text-shadow: 1px 1px #FFF;
    text-shadow: 1px 1px #FFF;
    border: none;
    background-color: #f7f7f7;
    width: 100%;
    min-width: 640px;
    border-spacing: 2px;
    border-collapse: separate;
    margin-bottom: 30px;
}

    table.injuries tr:nth-child(2n+1) {
        background-color: #E2E2E2;
    }

    table.injuries td {
        text-align: left;
        padding: 5px;
        width: 5.46875%;
        min-width: 35px;
    }

    table.injuries th {
        background-color: #C7C7C7;
        font-weight: normal;
        text-transform: uppercase;
        font-size: 11px;
        color: #000;
        height: 30px;
        padding: 1px;
        text-align: center;
        text-indent: 0;
    }

    table.injuries td:first-child {
        min-width: 136px;
        max-width: 136px;
    }

    table.injuries input {
        width: 85.7142857%;
        min-width: 30px;
        border: 1px solid #CCC;
        font-size: 12px;
        padding: 1px;
        text-indent: 0;
        line-height: 15px;
        height: 15px;
        color: #666;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

table.adminTooltip {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #4C4C4C;
    -webkit-text-shadow: 1px 1px #FFF;
    text-shadow: 1px 1px #FFF;
    border: none;
    background-color: #f7f7f7;
    width: 100%;
    min-width: 640px;
    border-spacing: 2px;
    border-collapse: separate;
}

    table.adminTooltip th {
        background-color: #C7C7C7;
        font-weight: normal;
        text-transform: uppercase;
        text-align: center;
        font-size: 11px;
        color: #000;
        height: 30px;
        padding: 5px;
        text-indent: 0;
    }

    table.adminTooltip td {
        text-align: left;
        padding: 5px;
    }

    table.adminTooltip tr:nth-child(2n+1) {
        background-color: #E2E2E2;
    }

    table.adminTooltip input {
        width: 100%;
        border: 1px solid #CCC;
        font-size: 12px;
        color: #666;
        padding: 1px;
        text-indent: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    table.adminTooltip th.col5 {
        min-width: 5%;
    }

    table.adminTooltip th.col15 {
        width: 15%;
    }

    table.adminTooltip th.col30 {
        width: 30%;
    }

    table.adminTooltip th.col10 {
        width: 10%;
    }

    table.adminTooltip select {
        width: 100%;
    }

/* ==========================================================================
   Admin Center Content Styles
   ========================================================================== */
.innerHolder.adminCenterContent {
    padding-left: 0;
}

ul.reportdetails {
    padding: 0;
    margin: 0 0 16px;
}

    ul.reportdetails li {
        list-style: none;
        margin: 0;
        padding: 0 0 8px 0;
        clear: both;
    }

    ul.reportdetails label {
        float: left;
        max-width: 90%;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
        line-height: 20px;
        color: #666;
        padding-left: 5px;
    }

    ul.reportdetails input[type=checkbox] {
        float: left;
        margin: 4px 3px;
    }

textarea.considerations {
    border-radius: 4px;
    border: 1px solid #B9B9B9;
    padding: 10px;
}

.adminCenterContent .buttonGray {
    font-size: 12px;
    margin-left: 0;
}

/* ==========================================================================
   Right Content Area
   ========================================================================== */
.rightContentHolder {
    float: left;
    position: relative;
    z-index: 10;
    margin: 0px 0 0 40px;
    padding-top: 30px;
}

.overflow {
    /* BEGIN MOD: JRC*/
    /*margin: 30px 0 0 40px;*/
    overflow: auto;
    overflow-x: visible !important;
    overflow-y: scroll !important;
    /* END MOD */
}


/* ==========================================================================
   Status Messages and Modals
   ========================================================================== */
.statusBox {
    width: 96%;
    padding: 7px 15px;
    border-radius: 3px;
    position: relative;
    margin-bottom: 20px;
}

.redStatus {
    background-color: #d64000;
    color: #fff;
}

    .redStatus a, .greenStatus a {
        color: #fff;
    }

.greenStatus {
    background-color: #7cc171;
    color: #fff;
}

.dismissLink {
    position: absolute;
    right: 40px;
    top: 22px;
}

.statusMessage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 520px;
    margin-left: -260px;
    background-color: #ea9713;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    -webkit-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    line-height: 56px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 20px 0 20px;
}

    .statusMessage p {
        margin: 0;
    }

.flucastWelcome h2 {
    font-size: 24px;
}

.flucastWelcome img.video {
    margin-top: 20px;
    float: right;
    margin-left: 1em;
}

.learnFlucastLaunch
{
}

.modalBox {
    width: 570px;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 0px;
    position: relative;
    border: 8px solid rgba(0,0,0,0.4);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -285px;
    z-index: 100;
    padding-bottom: 75px;
}

.modalHeader {
    height: 55px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #b9b9b9;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f7f7f7), color-stop(1, #e9e9e9) );
    background: -moz-linear-gradient( center top, #f7f7f7 5%, #e9e9e9 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e9e9e9');
}

.modalBox h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    color: #5c5c5c;
    line-height: 55px;
    text-indent: 20px;
    position: relative;
}

.modalBox label {
    font-size: 14px;
}

.modalBox .wideInput {
    width: 270px;
}

.modalFooter {
    height: 55px;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: 1px solid #b9b9b9;
}

.modalFooterUl {
    list-style: none;
    margin: 12px 12px 0 0;
    padding: 0;
    float: right;
}

    .modalFooterUl li {
        display: inline-block;
    }

        .modalFooterUl li a.cancelButton {
            color: #d64000;
            font-size: 12px;
            font-weight: bold;
            margin-right: 10px;
        }

.modalContent {
    padding: 30px 30px 10px 30px;
}

    .modalContent.pacerProfile {
        padding: 30px 14px;
    }

    .modalContent p {
        font-size: 14px;
        line-height: 24px;
        color: #5c5c5c;
        margin-bottom: 10px;
    }

        .modalContent p a {
            color: #ff4200;
        }

    .modalContent label.error {
        color: #d64000;
    }

.modalBox .errorNotiifcation {
    left: 350px;
    top: 17px;
}

.selectRecordList {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .selectRecordList li {
        display: inline-block;
    }

        .selectRecordList li a {
            display: block;
            padding: 5px 7px;
            font-size: 13px;
            color: #666;
            text-decoration: none;
            border-radius: 3px;
            margin: 0 2px 0 2px;
            -webkit-text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
            text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
        }

            .selectRecordList li a:hover {
                background-color: #d9d9d9;
            }

            .selectRecordList li a.selected {
                background-color: #005aba;
                -webkit-text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
                text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
                color: #fff;
            }

.blueLabelHolder {
    background-color: #8fa5bd;
    border-radius: 5px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

    .blueLabelHolder p {
        color: #fff;
        font-size: 13px;
        margin: 0;
    }

        .blueLabelHolder p.left {
            float: left;
            margin-left: 7px;
        }

        .blueLabelHolder p.right {
            float: right;
            margin-right: 7px;
        }

        .blueLabelHolder p a {
            color: #fff;
        }


/* ==========================================================================
   Tour
   ========================================================================== */
.tourBackground {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.tourPhoto {
    position: absolute;
    z-index: 200;
}

.tour1 {
}

.tour2 {
    top: 192px;
}

.tour3 {
    left: 298px;
    top: 50%;
    margin-top: 77px;
}

.tour4 {
    right: 0;
}

.tour5 {
    right: 0;
    top: 119px;
}

.arrow1 {
    position: absolute;
    left: -40px;
    top: 0px;
}


/* ==========================================================================
   Hospital Information
   ========================================================================== */
.hospitalInformationUl {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    float: left;
    width: 100%;
}

    .hospitalInformationUl li {
        float: left;
    }

        .hospitalInformationUl li .darkGrayButton {
            width: 72px;
        }

        .hospitalInformationUl li a {
            float: left;
        }

.fluRecordsHolder ul li a {
    height: 28px;
    line-height: 28px;
    color: #666;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    -webkit-text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
}

.iconImport2 {
    background: url(/assets/images/icon_import_2.png) 0 0 no-repeat;
    text-indent: 20px;
    margin-left: 15px;
}

a.iconImport2:hover {
    background-position: bottom left;
    color: #d64000;
}

a.iconQuestion {
    width: 20px;
    height: 20px;
    overflow: hidden;
    background: url(/assets/images/icon_question.png) 0 0 no-repeat;
    display: block;
    float: right;
    text-indent: -999px;
    margin: 11px 11px 0 0;
}

    a.iconQuestion:hover {
        background-position: 0 -20px;
    }

a.activeQuestion, a.activeQuestion:hover {
    background-position: 0 -40px;
}

.monthlyRecords select {
    font-size: 11px;
    position: relative;
    top: 1px;
    right: 10px;
}

.FlowHolder {
    display: none;
}

.hintsHolder p {
    padding: 0 20px 0 20px;
    color: #346fb0;
}

.hintClose {
    color: #d64000;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.hintsHolder {
    position: relative;
    padding-bottom: 40px;
    display: none;
}

.FlowHolder, .SpaceHolder {
    width: 100%;
}


/* ==========================================================================
   Central Content
   ========================================================================== */
.treatmentAreaHolder {
    background-color: #ededed;
    border: 1px solid #c0c0c0;
    height: 42px;
    line-height: 42px;
    width: 96%;
    padding: 7px 15px;
    position: relative;
    font-size: 12px;
    border-radius: 3px 3px 0px 0;
}

    .treatmentAreaHolder label {
        font-size: 12px;
        margin-right: 7px;
    }

    .treatmentAreaHolder select {
        font-size: 11px;
    }

.switchTableUl {
    list-style: none;
    float: right;
    position: relative;
    top: -12px;
}

    .switchTableUl li {
        display: inline-block;
        float: left;
    }

        .switchTableUl li a {
            text-decoration: none;
            color: #999;
            -webkit-text-shadow: 1px 1px rgba(255, 255, 255, 0.8);
            text-shadow: 1px 1px rgba(255, 255, 255, 0.8);
            float: left;
        }

            .switchTableUl li a:hover {
                color: #5993d5;
            }

            .switchTableUl li a.activeSwitch, .switchTableUl li a.activeSwitch:hover {
                color: #333;
            }

.slidingButtonHolder {
    display: block;
    float: left;
    background-color: #5993d5;
    width: 30px;
    height: 13px;
    margin: 15px 8px 0 8px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5) inset, 0px 1px 0px rgba(255, 255, 255, 0.8);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5) inset, 0px 1px 0px rgba(255, 255, 255, 0.8);
}

    .slidingButtonHolder span {
        display: block;
        width: 14px;
        height: 9px;
        border-radius: 10px;
        background-color: #e4e4e4;
        position: relative;
        top: 1px;
        left: 1px;
        border: 1px solid #fff;
        background: -moz-linear-gradient( center top, #ffffff 5%, #cbcbcb 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cbcbcb');
    }

.centralContentHolder {
    width: 96%;
    padding: 7px 15px;
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #c0c0c0;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
    border-top: none;
}

    .centralContentHolder table, .reportContentHolder table {
        width: 100%;
        font-size: 12px;
        color: #4c4c4c;
        -webkit-text-shadow: 1px 1px rgba(255, 255, 255, 1);
        text-shadow: 1px 1px rgba(255, 255, 255, 1);
    }

    .centralContentHolder td, .reportContentHolder td {
        padding: 8px 0 8px 0;
        text-align: center;
    }

    .centralContentHolder th, .reportContentHolder th {
        padding: 8px 0 5px 0;
        font-weight: normal;
        text-align: left;
        text-indent: 10px;
    }

    .centralContentHolder tr:nth-child(even), .reportContentHolder tr:nth-child(even) {
        background-color: #f0f0f0;
    }

.noBackground {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.centralContentHolder h4 {
    -webkit-text-shadow: 1px 1px rgba(255, 255, 255, 1);
    text-shadow: 1px 1px rgba(255, 255, 255, 1);
    float: left;
    margin: 0;
}

.bedExpansionUl {
    float: left;
    list-style: none;
    margin: 0;
}

    .bedExpansionUl li {
        float: left;
        display: inline-block;
    }

        .bedExpansionUl li a {
            display: block;
            float: left;
            border: 1px solid #b9b9b9;
            border-right: none;
            padding: 0 15px 0 15px;
            height: 23px;
            line-height: 23px;
            text-decoration: none;
            font-size: 12px;
            color: #676767;
            background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f8f8f8), color-stop(1, #dfdfdf) );
            background: -moz-linear-gradient( center top, #f8f8f8 5%, #dfdfdf 100% );
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dfdfdf');
            background-color: #f8f8f8;
        }

            .bedExpansionUl li a.lastButton1 {
                border-right: 1px solid #b9b9b9;
            }

            .bedExpansionUl li a:hover {
                color: #000;
                background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f8f8f8), color-stop(1, #c3c3c3) );
                background: -moz-linear-gradient( center top, #f8f8f8 5%, #c3c3c3 100% );
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#c3c3c3');
            }

            .bedExpansionUl li a.activeBedExpansion, .bedExpansionUl li a.activeBedExpansion:hover {
                background: transparent;
                background-color: #5993d5;
                color: #fff;
                -webkit-box-shadow: 0px 5px 5px rgba(25, 69, 183, 0.9) inset;
                box-shadow: 0px 5px 5px rgba(25, 69, 183, 0.9) inset;
                filter: none;
            }

.smallestInput {
    margin-left: 20px;
    margin-right: 0;
}

/* For smallestInputs in the surge template need to have this set */
.centralContentHolder .smallestInput {
    margin-left: 20px;
    margin-right: 0;
    margin-top: 0;
}

.smallestInput input {
    width: 28px;
    float: left;
    margin-right: 10px;
    padding: 5px 0;
    font-size: 12px;
}

.smallestInput label {
    font-size: 12px;
    float: right;
    position: relative;
    top: 3px;
}

.bottomBorder {
    border-bottom: 3px solid #ececec;
}

.smallestInput input[type="checkbox"] {
    width: auto;
    height: auto;
    top: 4px;
    border: none;
}

.admissionHolder {
    display: none;
}


.noRightMargin {
    margin-right: 9px;
}

.beforePredictionHolder {
    text-align: center;
    padding-bottom: 80px;
}

    .beforePredictionHolder img {
        margin-top: 70px;
        margin-bottom: 30px;
    }

    .beforePredictionHolder p {
        color: #999;
    }

.prediction {
    display: block;
    width: 83px;
    height: 68px;
    line-height: 68px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #b50000;
    text-align: center;
    font-size: 29px;
    font-family: "alternategothic2_btregular";
    border-radius: 0 5px 5px 0;
}

    .prediction:after {
        width: 0px;
        height: 0px;
        content: "";
        left: 25px;
        position: absolute;
        bottom: -15px;
        border-top: 15px solid #b50000;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }

.afterPredictionHolder {
    text-align: center;
/* BEGIN MOD: JRC */
    /*padding-top: 60px; - LEAVE COMMENTED IN MERGE*/
/* END MOD: JRC */
}

#visualization, #visualization2 {
    margin-bottom: 60px;
    /*margin-left: auto;
  margin-right: auto;*/
}

/*.redStatus{
  display: none;
}*/

.hideIt {
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.noRightMargin2 {
    margin-right: 0;
}



/* ==========================================================================
   EmCast
   ========================================================================== */

.profileLeft2 {
    float: left;
    clear: both;
    margin-left: 40px;
    margin-bottom: 20px;
}

    .profileLeft2 h2 {
        font-size: 32px;
        color: #004590;
        margin: 20px 0px 1em 0px;
/* BEGIN MOD: JRC - Caused bug in IE10 on EMCAPS home page */
        /*float: left;*/
/* END MOD: JRC */
    }

    .profileLeft2 h3 {
        margin-bottom: 0;
    }

    .profileLeft2 p {
        margin-top: 0;
        font-size: 16px;
        color: #999;
        clear: both;
    }

.loadHospitalDropdownUl.rightAligned {
    right: 6px;
}

.profileRight2 {
    margin-top: 30px;
}

.profileAreaHolder2 {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: auto;
}


.iconsHolder {
    width: 980px;
    clear: both;
    margin: 0 auto;
/* BEGIN MOD: JRC - min-height creates unnecessary scorlling*/
    /*min-height: 1210px;*/
/* END MOD: JRC */
}

.scenarioIconsUl {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .scenarioIconsUl li {
        display: inline-block;
    }

        .scenarioIconsUl li a {
            width: 220px;
            height: 220px;
            background-color: #c3c3c3;
            margin: 0 10px 20px 10px;
            border-radius: 5px;
            display: inline-block;
            text-align: center;
            color: #fff;
            font-size: 20px;
            font-family: "alternategothic2_btregular";
            text-decoration: none;
            position: relative;
            cursor: pointer;
        }

         .scenarioIconsUl li a.icon-scenario {
            background-color: #929292;
        }

            .scenarioIconsUl li a:hover {
                background-color: #c25555;
            }

.scenarioHolder {
    background-color: #d9d9d9;
    padding: 60px 0 60px 0;
    position: absolute;
    width: 100%;
    display: none;
}

.scenario {
    width: 940px;
    margin: 0 auto;
    min-height: 340px;
    position: relative;
}

.scenarioHolder > .scenario > .closeButton {
    border-color: #913539;
    background-color: #C25555;
    top: -65px;
    right: 0;
}

    .scenarioHolder > .scenario > .closeButton:hover {
        background-color: #913539;
    }

.scenarioPhoto {
    float: left;
    margin: 0 40px 0 0;
}

.scenario h3 {
    text-transform: none;
    font-size: 26px;
    -webkit-text-shadow: none;
    text-shadow: none;
    margin-bottom: 10px;
}

.scenario p {
    color: #666;
}

.scenario .wideInput {
    width: 410px;
}

.scenario input {
    padding-top: 13px;
    padding-bottom: 13px;
}

.buttonReport {
    padding: 8px 20px 8px 20px;
    font-size: 12px;
    position: relative;
    top: -1px;
    color: #666;
}

/* scenario12 AKA Pandemic Flu doesn't have a field */
.scenario12 .buttonReport {
    margin-left: 0;
}

.scenario .inlineInput {
    margin-right: 5px;
}

.monthlyRecords .buttonGray {
    position: relative;
    left: -10px;
    clear: both;
    float: left;
}

    .buttonReport:hover, .monthlyRecords .buttonGray:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c0d5ea), color-stop(1, #84b6e8) );
        background: -moz-linear-gradient( center top, #c0d5ea 5%, #84b6e8 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c0d5ea', endColorstr='#84b6e8');
        background-color: #c0d5ea;
        border-color: #6d829a;
        color: #003b7d;
    }

.scenarioIconsUl li a span, .activeScenario {
    position: absolute;
    width: 40px;
    height: 23px;
    background: url(/assets/images/scenario_arrow.png) 0 0 no-repeat;
    display: block;
    left: 90px;
}

.inlineP {
    display: inline-block;
    margin: 0 0 0 0;
    font-size: 14px;
    color: #666;
}

.yearlyRecord select {
    float: right;
    font-size: 11px;
    position: relative;
    top: 15px;
    right: 10px;
}

.yearlyRecord p {
    font-weight: normal;
}

.monthlyRecords select {
    margin-left: 10px;
}

.monthlyRecords li p {
    margin: 10px 0 5px 0;
}

.monthlyRecords li {
    position: relative;
}

.fluRecordsHolder ul li a.iconQuestion2 {
    display: block;
    width: 16px;
    height: 16px;
    background: url(/assets/images/icon_question_02.png) 0 0 no-repeat;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 21px;
    text-indent: -9999px;
    line-height: 0;
}

    .fluRecordsHolder ul li a.iconQuestion2:hover {
        background-position: bottom left;
    }
/*
.monthlyRecords input{
  float: left;
}
*/
.pdLine {
    line-height: 25px;
    text-indent: 10px;
    display: inline-block;
}

.smallestInput {
    margin-left: 0;
    margin-top: 10px;
}

.presetsHolder {
    display: none;
    margin-bottom: 10px;
    clear: both;
    float: left;
}

    .presetsHolder select {
        float: left;
    }

.citySelect {
    width: 87px;
}

.monthlyRecords .ctrlHolder {
    margin-bottom: 10px;
}

.hidden2 {
    display: block;
}

.monthlyRecords li.lastLi {
    border: none;
    padding-bottom: 0;
}

.innerHolder {
    padding-left: 40px;
}

.centralTabsUl {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

    .centralTabsUl li {
        display: inline-block;
    }

        .centralTabsUl li a {
            font-size: 13px;
            color: #666;
            text-decoration: none;
            margin-right: 15px;
        }

            .centralTabsUl li a:hover {
                text-decoration: underline;
            }

            .centralTabsUl li a.activeTab {
                font-weight: bold;
                color: #d64000;
                text-decoration: underline;
            }

.innerHolder h1 {
    color: #000;
    font-size: 26px;
    font-family: "alternategothic2_btregular";
    font-weight: normal;
}

.innerHolder h2 {
    font-size: 21px;
    line-height: 23px;
    margin-bottom: 16px;
    margin-top: 25px;
}

.innerHolder h3 {
    font-size: 21px;
    line-height: 23px;
    margin-bottom: 14px;
    color: #666;
    text-transform: none;
}

.innerHolder p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 20px;
    color: #666;
}

.emcaps > .profileLeft {
    background-color: transparent;
    margin-top: -7px;
}

.emcaps > .profileRight .hospitalCtrlUl .loadHospital {
    font-weight: bold;
    width: 243px;
    text-indent: 0;
    line-height: 2.9em;
    text-shadow: 0px 1px 0px rgb( 255, 255, 255 );
    border-color: rgb( 172, 172, 172 );

    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 224px -1px, -moz-linear-gradient( 90deg, rgb(230,229,229) 0%, rgb(243,243,243) 97%, rgb(255,255,255) 100%);
    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 224px -1px, -webkit-linear-gradient( 90deg, rgb(230,229,229) 0%, rgb(243,243,243) 97%, rgb(255,255,255) 100%);
    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 224px -1px, -ms-linear-gradient( 90deg, rgb(230,229,229) 0%, rgb(243,243,243) 97%, rgb(255,255,255) 100%);

    box-shadow: 0px 3px 0px 0px rgb( 244, 244, 244 );
}

.emcaps > .profileRight .hospitalCtrlUl .loadHospital:hover {
    border-color: rgb( 192, 192, 192 );
    color: #333;
    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 224px -1px #f3f3f3;
}

.emcaps > .profileRight .hospitalCtrlUl .loadHospital.whiteButtonClick {
    color: #333;
    background: url("/assets/images/icon_dropdown.png") no-repeat scroll 224px -1px #f3f3f3;
    box-shadow: none;
}

.emcaps > .profileRight .hospitalCtrlUl .loadHospitalDropdownUl {
    right: 9px;
}

.loadHospitalDropdownUl li a {
    /*line-height: 25px;*/
    padding-left: 50px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: 13px center;
}

.loadHospitalDropdownUl .db a {
    background-image: url("/assets/images/icon-dirty-bomb-02.png");
}

.loadHospitalDropdownUl .ia a {
    background-image: url("/assets/images/icon-inhalational-anthrax-02.png");
    background-position: 16px center;
}

.loadHospitalDropdownUl .pp a {
    background-image: url("/assets/images/icon-pneumonic-plague-02.png");
    background-position: 14px center;
}

.loadHospitalDropdownUl .fc a {
    background-image: url("/assets/images/icon-food-contamination-02.png");
}

.loadHospitalDropdownUl .ba a {
    background-image: url("/assets/images/icon-mustard-gas-02.png");
    background-position: 15px center;
}

.loadHospitalDropdownUl .tg a {
    background-image: url("/assets/images/icon-toxic-gas-02.png");
    background-position: 14px center;
}

.loadHospitalDropdownUl .na a {
    background-image: url("/assets/images/icon-nerve-agent-02.png");
}

.loadHospitalDropdownUl .oae a {
    background-image: url("/assets/images/icon-open-air-explosion-02.png");
    background-position: 14px center;
}

.loadHospitalDropdownUl .te a {
    background-image: url("/assets/images/icon-transport-explosion-02.png");
    background-position: 17px center;
}

.loadHospitalDropdownUl .ipe a {
    background-image: url("/assets/images/icon-personal-explosion-02.png");
    background-position: 16px center;
}

.loadHospitalDropdownUl .pi a {
    background-image: url("/assets/images/icon-flu-02.png");
    background-position: 15px center;
}

.profileLeft h1.overview {
    background-position: 0 0;
    background-repeat: no-repeat;
    padding-left: 63px;
    padding-bottom: 15px;
    color: #000;
    font-size: 26px;
    font-family: "alternategothic2_btregular";
    font-weight: normal;
}

.profileLeft h1.ba {
    background-image: url(/assets/images/icon_scenario_ba_small_dark.png);
}

.profileLeft h1.bce {
    background-image: url(/assets/images/icon_scenario_bce_small_dark.png);
    padding-left: 50px;
}

.profileLeft h1.dirtyBomb {
    background-image: url(/assets/images/icon_scenario_dirty_bomb_small_dark.png);
}

.profileLeft h1.fc {
    background-image: url(/assets/images/icon_scenario_fc_small_dark.png);
}

.profileLeft h1.ia {
    background-image: url(/assets/images/icon_scenario_ia_small_dark.png);
    padding-left: 58px;
}

.profileLeft h1.ipe {
    background-image: url(/assets/images/icon_scenario_ipe_small_dark.png);
    padding-left: 50px;
}

.profileLeft h1.na {
    background-image: url(/assets/images/icon_scenario_na_small_dark.png);
    padding-left: 58px;
}

.profileLeft h1.oea {
    background-image: url(/assets/images/icon_scenario_oea_small_dark.png);
}

.profileLeft h1.pp {
    background-image: url(/assets/images/icon_scenario_pp_small_dark.png);
}

.profileLeft h1.te {
    background-image: url(/assets/images/icon_scenario_te_small_dark.png);
    padding-left: 50px;
}

.profileLeft h1.tg {
    background-image: url(/assets/images/icon_scenario_tg_small_dark.png);
    padding-left: 50px;
}

.tab {
    display: none;
}

.modalHeader h4 {
    font-family: Arial, Helvetica, Sans;
    font-weight: bold;
}

.modalBackground {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.hospitalCtrlUl2 {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
}

    .hospitalCtrlUl2 li {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

        .hospitalCtrlUl2 li a {
            font-size: 12px;
        }

.loadHospital2 {
    width: 190px;
}

.loadHospital2 {
    background: url(/assets/images/icon_dropdown.png) 170px -1px no-repeat;
    text-align: left;
    text-indent: 10px;
}

    .loadHospital2:hover {
        background-position: 170px -37px;
    }

.modalContent .whiteButtonClick {
    height: 40px;
    z-index: 10;
    position: relative;
    border-bottom: none;
    background-color: #fff;
    border-radius: 3px 3px 0 0;
    border-color: #b9b9b9;
    color: #d64000;
    background-position: 170px -37px;
}

.modalBox .wideInput {
    width: 285px;
}

.hospitalCtrlUl2 {
    position: relative;
    top: -1px;
}

.dropdownLabel {
    position: absolute;
    top: -20px;
    font-size: 14px;
    color: #5C5C5C;
}

.questionTooltip {
    position: fixed;
    font-weight: bold;
    background-color: #131313;
    padding: 15px 15px 15px 15px;
    line-height: 12px;
    color: #fff;
    top: auto;
    left: 270px;
    border-radius: 5px;
    font-size: 12px;
    /* BEGIN MOD: JRC - Make width larger to handle HTML tables*/
    width: 400px;
    /* END MOD */
    z-index: 9999;
    margin-top: -50px;
}

    .questionTooltip:after {
        width: 0px;
        height: 0px;
        content: "";
        left: -10px;
        position: absolute;
        top: 10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #131313;
    }


.rightContentHolder {
    z-index: 0;
}

.smallestInput input[type="checkbox"] {
    background-color: transparent;
}

.monthlyRecords .smallestInput input {
    float: none;
    top: 2px;
}

.monthlyRecords .smallestInput {
    clear: both;
    float: left;
}


/* ==========================================================================
   Report
   ========================================================================== */

.reportContentHolder {
    background: #f7f7f7;
    padding: 40px;
    color: #666;
    /* BEGIN MOD: JRC*/
    /*margin: 30px 0 0 40px;*/
    overflow: hidden;
    overflow-y: scroll;
    /* END MOD */
}

    .reportContentHolder a {
        color: #d64000;
        text-decoration: none;
    }

.reportHeader {
    font-size: 13px;
    line-height: 32px;
}

    .reportHeader .back {
        padding-left: 10px;
    }

    .reportHeader div {
        float: right;
    }

        .reportHeader div a {
            text-decoration: underline;
            color: #666;
            padding: 3px 25px 0 26px;
            background-position: 0 1px;
            background-repeat: no-repeat;
        }

            .reportHeader div a.print {
                background-image: url(/assets/images/print_icon.png);
            }

            .reportHeader div a.export {
                background-image: url(/assets/images/export_icon.png);
            }

.reportFooter {
    margin-bottom: 40px;
}

.report {
    /* BEGIN MOD: JRC */
    /*padding: 50px 65px 220px;*/
    padding: 50px 65px 40px;
    /* END MOD */
    margin: 20px 0;
    border: 1px solid #ccc;
    background: #fff;
}

    .report hr {
        margin: 24px 0 0;
    }

    .report h1 {
        font-size: 12px;
        line-height: 32px;
        font-weight: normal;
        text-align: right;
        text-transform: uppercase;
        margin: 0;
        position: relative;
        padding: 20px 65px 7px 0;
    }

        .report h1 strong {
            margin-right: 10px;
        }

    .report h2 {
        font-size: 26px;
        line-height: 1em;
        margin: 50px 0 0;
    }

    .report h3 {
        font-size: 21px;
        line-height: 1em;
        margin: 40px 0 0;
    }

    .report h1 > img {
        position: absolute;
        top: 4px;
        right: -17px;
        width: 80px;
        height: 65px;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .report.ba h1 > img {
        background-image: url(/assets/images/icon_scenario_ba_small.png);
    }

    .report.bce h1 > img {
        background-image: url(/assets/images/icon_scenario_bce_small.png);
        right: -9px;
    }

    .report.dirtyBomb h1 > img {
        background-image: url(/assets/images/icon_scenario_dirty_bomb_small.png);
    }

    .report.fc h1 > img {
        background-image: url(/assets/images/icon_scenario_fc_small.png);
    }

    .report.ia h1 > img {
        background-image: url(/assets/images/icon_scenario_ia_small.png);
        right: -20px;
    }

    .report.ipe h1 > img {
        background-image: url(/assets/images/icon_scenario_ipe_small.png);
        right: -25px;
    }

    .report.na h1 > img {
        background-image: url(/assets/images/icon_scenario_na_small.png);
        right: -19px;
    }

    .report.oea h1 > img {
        background-image: url(/assets/images/icon_scenario_oea_small.png);
        right: -10px;
    }

    .report.pp h1 > img {
        background-image: url(/assets/images/icon_scenario_pp_small.png);
    }

    .report.te h1 > img {
        background-image: url(/assets/images/icon_scenario_te_small.png);
        right: -10px;
    }

    .report.tg h1 > img {
        background-image: url(/assets/images/icon_scenario_tg_small.png);
        right: -19px;
    }

    .report ul, .report ol {
        font-size: 15px;
        line-height: 23px;
        padding: 0;
        margin: 13px 0 0;
    }

    .report table {
        max-width: 500px;
        margin-top: 13px;
    }

    .report th {
        font-weight: bold;
        font-size: 13px;
        text-indent: 0;
        padding: 5px;
        border-bottom: 1px solid #ccc;
    }

    .report td {
        text-align: left;
        font-size: 13px;
        padding: 5px;
    }

    .report table.hasFooter tbody tr:last-child {
        border-top: 2px solid #ccc;
        background-color: transparent;
    }

    .report table.hasFooter tr:last-child td {
        padding-top: 13px;
    }

    .report.ba table, .report.na table, .report.tg table {
        max-width: 100%;
    }

.selectScenario.flu .inlineInput {
    display: none;
}

.selectScenario.flu .downloadSpreadsheet {
    float: left;
    width: 289px;
    margin-right: 20px;
}

.selectScenario.flu p {
    margin-top: 0;
}

.selectScenario.flu .hospitalCtrlUl2 {
    margin-top: 23px;
}

.downloadSpreadsheet {
    display: none;
}

.selectScenario.flu .downloadSpreadsheet {
    display: block;
}
/*


text: #666666;
link: #d64000;
icon: #999999;

header buttons: 13/32;
h1: 12/32;
h2: 26px/32px;
h3: 21px/32px;
ul/ol: 15px/23px;

.innercontainer {
  padding: 50px 60px 220px;
}


*/

/* ==========================================================================
   Dashboard
   ========================================================================== */

.pacerSuite {
}

    .pacerSuite div {
        border: 1px solid #d3d3d3;
        border-radius: 3px;
        width: 248px;
        float: left;
        margin-right: 40px;
        padding: 30px 18px;
        height: 450px;
        background-color: #FFF;
        position: relative;
    }

        .pacerSuite div:last-child {
            margin-right: 0;
        }

    .pacerSuite h2 {
        color: #004590;
        font-size: 32px;
        margin: 50px 0 25px;
    }

    .pacerSuite div > p {
        text-align: center;
        margin: 0;
    }

     .pacerSuite div > p .altImage {
        display: none;
    }

    .pacerSuite div > p.dashIcon:hover img {
        display: none;
        cursor: pointer;
    }

    .pacerSuite div > p.dashIcon:hover img.altImage {
        display: inline;
    }

    .pacerSuite h3 {
        color: #004590;
        font-size: 36px;
        text-align: center;
        margin: 26px 0;
    }

    .pacerSuite p {
        font-size: 14px;
    }

    .pacerSuite form {
        position: absolute;
        bottom: 25px;
        left: 18px;
        right: 18px;
    }

    .pacerSuite label {
        color: #004590;
        display: block;
        font-size: 12px;
        text-align: center;
        margin-bottom: 8px;
    }

    .pacerSuite select {
        font-size: 12px;
        text-align: center;
        margin: 0 auto;
        display: block;
        padding: 3px 1px;
    }

        .pacerSuite select + p {
            text-align: center;
            font-size: 12px;
        }

    .pacerSuite form p {
        margin: 10px 0;
    }

    .pacerSuite a.button {
        color: #FFF;
        text-align: center;
        width: 100%;
        display: block;
        line-height: 38px;
        font-weight: bold;
        border: 1px solid #00244e;
        border-radius: 3px;
        -webkit-text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.74);
        text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.74);
        background-color: #005cbc;
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.5, #005cbc), color-stop(1, #004595) );
        background: -moz-linear-gradient( center top, #005cbc 5%, #004595 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005cbc', endColorstr='#004595');
        text-decoration: none;
    }

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

section.main {
    position: relative;
    z-index: 2;
    text-align: center;
}

    section.main h1 {
        font-size: 72px;
        line-height: 72px;
        text-transform: uppercase;
        font-weight: normal;
        color: #FFF;
        margin: 132px auto 20px;
    }

    section.main p {
        color: #ebebeb;
        font-size: 20px;
        line-height: 20px;
        width: 700px;
        margin: auto auto 48px;
    }

    section.main a {
        display: block;
        color: #f7c90d;
        font-size: 14px;
        text-decoration: underline;
    }

        section.main a:focus, section.main a:hover {
            text-decoration: none;
        }

        section.main a.button {
            width: 145px;
            display: inline-block;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid #d17a00;
            margin-bottom: 23px;
            padding: 13px 0;
            border-radius: 4px;
            background-color: #f5a32d;
            background-image: -moz-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
            background-image: -webkit-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
            background-image: -ms-linear-gradient( 90deg, rgb(234,138,1) 0%, rgb(246,163,45) 100%);
            -moz-background-clip: padding;
            -webkit-background-clip: padding;
            background-clip: padding-box;
            color: #fff;
            font-size: 18px;
            line-height: 20px;
            font-weight: bold;
            -webkit-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
            margin-right: 15px;
        }

            section.main a.button.glow {
                border: 5px solid rgba(247, 201, 14, 0.3);
                border-radius: 4px;
            }

div.tabs {
    background: url(/assets/images/tab_bg.png) no-repeat 50% 26px;
    margin-top: 67px;
}

    div.tabs ul {
        padding-left: 0;
        margin-bottom: 0;
    }

    div.tabs li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 26px;
    }

    div.tabs span.title {
        text-transform: uppercase;
        color: #5b5b5b;
        font-size: 24px;
        text-decoration: none;
        margin: 3px 0 0;
        display: inline-block;
    }

    div.tabs a {
        text-decoration: none;
    }

        div.tabs a:hover img, div.tabs a:focus img {
            background: url(/assets/images/shield_hover.png) no-repeat 50% 50%;
        }

        div.tabs a:hover span.title, div.tabs a:focus span.title {
            color: #00458f;
        }

    div.tabs a, div.tabs img, div.tabs span.title {
        -moz-transition: 0.5s color;
        -o-transition: 0.5s color;
        -ms-transition: 0.5s color;
        -webkit-transition: 0.5s color;
        transition: 0.5s color;
    }

    div.tabs .current a img {
        width: 217px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: url(/assets/images/shield_active.png) no-repeat 50% 50%;
    }

    div.tabs .current a span.title {
        color: #d53f00;
        font-size: 36px;
    }

    div.tabs img {
        display: block;
        width: 120px;
        background: url(/assets/images/tab_shield.png) no-repeat 50% 50%;
        padding: 10px;
    }

    div.tabs p.description {
        display: block;
        width: 235px;
        font-size: 13px;
        color: #5b5b5b;
        padding-bottom: 80px;
        line-height: 1em;
        margin-bottom: 0;
    }

#video_bg {
    background: url(/assets/images/loop_bg.jpg) no-repeat 50% 0;
    height: 561px;
    position: absolute;
    width: 100%;
    /* BEGIN MOD: JRC - fixes border issue*/
    top: 95px;
    /* END MOD */
}

.tabs_grade {
    background: url(/assets/images/grade.png) repeat-x 0 102px;
}

div.tab_content {
    background: white url(/assets/images/repeater.png);
}

    div.tab_content article {
        display: none;
    }

        div.tab_content article.current {
            display: block;
        }

    div.tab_content .contain {
        max-width: 1008px;
        margin: auto;
        text-align: left;
        padding: 50px 0 0;
    }

    div.tab_content h2 {
        color: #c4c4c4;
        font-size: 52px;
        margin-bottom: 4px;
        margin-top: 10px;
        line-height: 1em;
        font-weight: normal;
        text-transform: uppercase;
        -webkit-text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    div.tab_content p {
        color: #5e5e5e;
        font-size: 15px;
        line-height: 1.7;
        margin: 0 5px;
        width: auto;
    }

    div.tab_content .content {
        width: 400px;
        float: left;
    }

.movie {
    float: left;
    position: relative;
    top: -67px;
    right: -30px;
    margin-bottom: -78px;
    -webkit-box-shadow: 0px 1px 11px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 1px 11px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 11px 4px rgba(0, 0, 0, 0.4);
}

    .movie img {
        display: block;
    }

.suite {
    color: #f6c90e;
}


.gothic, header.main h2, section.main h1, div.tabs span.title, div.tab_content h2, nav.footer li {
    font-family: 'alternategothic2_btregular', Arial, Helvetica, sans-serif;
}

.clear_fix:after, div.tab_content .contain:after, nav.footer ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

.clear_fix, div.tab_content .contain, nav.footer ul {
    min-height: 1%;
}

.lt-ie8 nav.footer li, .lt-ie8 header.main li {
    float: left;
}

.lt-ie8 header.main {
    height: 75px;
}

    .lt-ie8 header.main h1, .lt-ie8 header.main span, .lt-ie8 header.main h2 {
        float: left;
    }

.lt-ie8 div.tabs {
    width: 760px;
    margin: 90px auto auto;
}

    .lt-ie8 div.tabs li {
        float: left;
    }

    .lt-ie8 div.tabs img {
        display: block;
    }

    .lt-ie8 div.tabs a:hover span.title, .lt-ie8 div.tabs a:focus span.title {
        text-decoration: underline;
    }
