/*GLOBAL.CSS = GLOBALLY SHARED STYLES.*/
/*PLEASE DO NOT PUT MODULE-SPECIFIC (COMPONENT-LEVEL) STYLES IN THE GLOBAL STYLESHEET. Use modules.css instead. */

/*Defaults*/
html {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 100%;
}

    html.largeText {
        font-size: 115%;
    }

body {
    background-color: #43515e;
}

    /*Accessibility enhancement*/
    body:not(.user-is-tabbing) button:focus, body:not(.user-is-tabbing) input:focus, body:not(.user-is-tabbing) select:focus, body:not(.user-is-tabbing) textarea:focus {
        outline: none;
    }

    body.user-is-tabbing *:focus {
        outline: 2px solid #4287f5 !important;
    }

/*fix IE*/
fieldset[disabled] {
    pointer-events: none;
}

/*More Defaults*/

a {
    color: #235b86;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1 {
    /*only use rem when we want the element to be affected by text size buttons
    font-size: 18px;
    text-align: center;
    margin-bottom: 26px;
    font-weight: bold;
    */
}

strong {
    font-weight: bold;
}

hr {
    color: #ccc;
    outline: none;
    border: none;
    border-top: 1px solid #ccc;
}

    hr.alt {
        border-top: 1px #b7d3e1 solid;
        height: 0px;
    }

    hr.small {
        border-top: 1px #b7d3e1 solid;
        width: 50%;
    }

dl dt,
dl dd {
    float: left;
    width: 50%;
}

dl dt {
    font-weight: bold;
}

dl:before, dl:after {
    content: " ";
    display: table;
}

dl:after {
    clear: both;
}

/*.*/
dl.alt {
    margin-bottom: 5px;
}

    dl.alt:before,
    dl.alt:after {
        content: none;
    }

    dl.alt dd,
    dl.alt dt {
        width: auto;
        float: none;
        display: inline-block;
    }

    dl.alt dt {
        margin-right: 4px;
    }

/*MOST button type inputs on the legacy site follow this design pattern... */
a.button,
a.cancelLink,
input[type="submit"],
input[type="button"] {
    min-width: 96px;
    text-align: center;
    display: inline-block;
    color: #000;
    height: 25px;
    line-height: 23px;
    font-weight: bolder;
    font-family: inherit;
    font-size: 12px;
    padding: 0px 8px 4px;
    background: #e7f9cb;
    background: -moz-linear-gradient(top, #e7f9cb 0%, #c2e09f 100%);
    background: -webkit-linear-gradient(top, #e7f9cb 0%, #c2e09f 100%);
    background: linear-gradient(to bottom, #e7f9cb 0%, #c2e09f 100%);
    border: 1px solid #8BC558;
    border-radius: 6px;
    cursor: pointer;
}

/*...BUT the legacy site design is not consistent. These are the exceptions to the rule. */
.unstyled-buttons a.button,
.unstyled-buttons a.cancelLink,
.unstyled-buttons input[type="submit"],
.unstyled-buttons input[type="button"] {
    height: auto;
    line-height: initial;
    font-weight: normal;
    padding: 2px 7px;
    border: 1px solid #949494;
    border-radius: 1px;
    margin-bottom: 4px;
    min-width: 0;
    background: #f5f5f5;
    background: -moz-linear-gradient(top, #f5f5f5 0%, #e0e0e0 100%);
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#e0e0e0 100%);
    background: linear-gradient(to bottom, #f5f5f5 0%,#e0e0e0 100%);
}

select {
    height: 22px;
}

/* layout classes */
.w-754 {
    width: 754px;
    margin: 0 auto;
}

.w-760 {
    width: 760px;
    margin: 0 auto;
}

.w-980 {
    width: 980px;
    margin: 0 auto;
}

/* column classes*/
.col {
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

/*.*/
.col-166 {
    width: 16.666%;
}

.col-20 {
    width: 20%;
}

.col-25 {
    width: 25%;
    /*legacy design is not exactly a standard 12-col grid*/
    width: 28%;
}

.col-28 {
    width: 28%;
}

.col-33 {
    width: 33.333%;
}

.col-50 {
    width: 50%;
}

.col-66 {
    width: 66.666%;
}

.col-72 {
    width: 72%;
}

.col-75 {
    width: 75%;
    /*legacy design is not exactly a standard 12-col grid*/
    width: 72%;
}

.col-80 {
    width: 80%;
}

/*Bootstrappy versions of the above */
.col-md-1 {
    width: 8.3333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-2 {
    width: 16.6666%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-3 {
    width: 25%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    /*legacy design is not exactly a standard 12-col grid*/
    width: 28%;
}

.col-md-4 {
    width: 33.3333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-5 {
    width: 41.6666%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-6 {
    width: 50%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-7 {
    width: 58.3333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-8 {
    width: 66.6666%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-9 {
    width: 75%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    /*legacy design is not exactly a standard 12-col grid*/
    width: 72%;
}

.col-md-10 {
    width: 83.3333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-11 {
    width: 91.6666%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-12 {
    width: 100%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

/* page-section is one of the full width, white background, rounded corners boxes. */
.page-section {
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    margin-bottom: 6px;
}

/*.*/
.layout-container > .col:first-of-type {
    padding-left: 0;
}

.layout-container > .col:last-of-type {
    padding-right: 0;
}

/* utility classes */
.cf:before, .cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.row {
    margin-left: -5px;
    margin-right: -5px;
}

    .row:before, .row:after {
        content: " ";
        display: table;
    }

    .row:after {
        clear: both;
    }

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

.hidden {
    display: none;
}

.visuallyHidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/*additional grid classes*/
.col {
    padding-left: 5px;
    padding-right: 5px;
}

.row {
    margin-left: -5px;
    margin-right: -5px;
}

/*container and general content classes*/
.gradient-white-to-grey {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #eef2f3 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #eef2f3 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #eef2f3 100%);
}

.gradient-blue-to-white {
    background: #f1f7f7;
    background: -moz-linear-gradient(top, #f1f7f7 0%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f1f7f7 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f1f7f7 0%, #ffffff 100%);
}

.blue-border {
    border: 1px solid #B8D3E1;
}

.rounded {
    border-radius: 6px;
}

.blue-val {
    font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 130%;
    color: #005dab;
    padding-top: 6px;
    padding-bottom: 2px;
}

.blue-sides {
    border-left: 1px solid #b7d3e2;
    border-right: 1px solid #b7d3e2;
    padding: 0 6px;
}

ul.blue-bullets {
    list-style-image: url(/Images/MemberPortal/Project/Common/bullet.gif);
    margin-left: 25px;
}

.red {
    color: #ff0000;
}

/*ALT (for simpler markup - these are groups of the above. So we can use either these (boxes) or a combination of the above.)*/
.box {
    border-radius: 6px;
    padding: 12px 8px 18px;
    margin-bottom: 10px;
}

    .box .title h1 {
        font-size: 140%;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
        margin-bottom: 24px;
    }

    .box h3 {
        font-weight: bold;
        margin-bottom: 6px;
    }

    .box.grey {
        background-color: #F9FCF5;
        border: 1px solid #ccc;
        border-top-color: #eee;
        border-bottom-color: #888;
        box-shadow: 0px 1px 0px 0px rgba(155, 155, 155, .5);
    }

    .box.blue {
        background: #f1f7f7;
        background: -moz-linear-gradient(top, #f1f7f7 0%, #ffffff 100%);
        background: -webkit-linear-gradient(top, #f1f7f7 0%, #ffffff 100%);
        background: linear-gradient(to bottom, #f1f7f7 0%, #ffffff 100%);
        border: 1px solid #B8D3E1;
    }

    .box.green {
        position: relative;
        padding: 0;
        margin-bottom: 12px;
    }

        .box.green .title {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 30px;
            background: #f1f8e9;
            background: -moz-linear-gradient(top, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%);
            background: -webkit-linear-gradient(top, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%);
            background: linear-gradient(to bottom, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%);
            border: 1px solid #B9CE96;
            border-radius: 7px;
        }

            .box.green .title h2 {
                padding: 4px 0 0 6px;
                font-size: 17px;
                font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
            }

            .box.green .title .tooltip {
                position: absolute;
                right: 6px;
                top: 3px;
            }

        .box.green > .content {
            padding: 36px 10px 10px;
            background: #F9FCF5;
            border: 1px solid #B9CE96;
            box-shadow: 0px 1px 0px 0px rgba(155, 155, 155, .5);
            border-radius: 7px;
            border-bottom-color: #888;
        }

        .box.green hr {
            margin-left: 18px;
            margin: 10px 0;
        }

    .box.error {
        min-height: 500px;
    }

        .box.error .title h1 {
            font-size: 140%;
            font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
            margin-bottom: 24px;
        }

        .box.error .content {
            color: red;
            margin: 0 0 20px 10px;
        }

/* STANDARD, DEFAULT FORM STYLES */
div[role="button"] {
    cursor: pointer;
}

.required {
    color: #a55020;
}
/*for the "*" */
span.required {
    width: 8px;
    display: inline-block;
    font-weight: bold;
}

.form-title {
    font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 130%;
    color: #AE5237;
    padding-top: 8px;
    padding-bottom: 2px;
}

.form-subtitle {
    font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 130%;
    color: #005dab;
    padding-top: 6px;
    padding-bottom: 2px;
}

form legend {
    font-weight: bold;
    margin-bottom: 4px;
}

form label {
    /*padding-left:8px;*/
}

form .row-group {
    margin-bottom: 14px;
}

form .input-row {
    margin-bottom: 4px;
    position: relative;
}

form .input-row {
    margin-bottom: 4px;
}

    form .input-row .left {
        display: inline-block;
        width: 49%;
        vertical-align: middle;
    }

    form .input-row .right {
        display: inline-block;
        width: 49%;
    }

    form .input-row label {
        display: inline-block;
    }

/* smaller form modules i.e. the ones that appear on member home page */
.widget .input-row .left {
    width: 39%;
}

.widget .input-row .right {
    width: 59%;
}

.widget input[type='submit'],
.widget input[type='button'] {
    display: block;
    margin: 0 auto;
}

/*some default rules based on container type...*/
.col-md-3 form label, .col-md-3 form input {
    font-size: 12px;
    vertical-align: top;
    line-height: 1.5;
}

    .col-md-3 form input[type="text"] {
        width: 100px;
        height: 16px;
    }

.col-md-3 form select {
    width: 104px;
    font-size: 12px;
}

.col-md-3 a {
    color: #235b86;
}

.col-md-3 input[type="submit"] {
    margin: 20px auto 10px;
    display: block;
    width: 150px;
}

/*
GLOBAL MODULES
Modules that are common to most/all page templates
*/

header nav.top-links {
    padding: 7px 10px 3px;
}

    header nav.top-links ul {
        text-align: right;
        font-size: 12px;
    }

    header nav.top-links li {
        display: inline-block;
        font-size: inherit;
        padding-right: 4px;
    }

        header nav.top-links li + li {
        }

            header nav.top-links li + li:before {
                content: " | ";
                color: #c2c2c2;
                display: inline-block;
                margin-right: 2px;
            }

    header nav.top-links a {
        color: #fff;
        text-decoration: none;
        font-size: inherit;
    }

header .banner {
    position: relative;
    height: 101px;
    margin-bottom: 8px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #eef2f3 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #eef2f3 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #eef2f3 100%);
}

    header .banner .logo {
        padding: 15px 0 0 0;
    }

    header .banner .right {
        position: absolute;
        right: 10px;
        top: 36px;
        width: 210px;
    }

        header .banner .right .user-links li {
            display: inline-block;
            padding-right: 3px;
            font-size: inherit;
            font-weight: bold;
        }

            header .banner .right .user-links li + li {
                padding-left: 6px;
            }

    header .banner .bottom {
        position: absolute;
        bottom: 0;
        left: 19px;
        height: 22px;
    }

        header .banner .bottom .app-name {
            font-size: 16px;
            font-weight: 700;
            margin-right: 30px;
        }

/*Navigation component (many forms)*/
nav#primaryNav {
    height: 25px;
    margin-left: -1px;
}

nav.tabs ul:before, nav.tabs ul:after {
    content: " ";
    display: table;
}

nav.tabs ul:after {
    clear: both;
}

nav.tabs li {
    position: relative;
    display: block;
    height: 25px;
    float: left;
    background-image: url(/Images/MemberPortal/Project/Common/tab_normal_center.gif);
    background-repeat: repeat-x;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 6px;
}

    nav.tabs li:before {
        content: " ";
        display: block;
        height: 25px;
        width: 10px;
        position: absolute;
        left: -10px;
        top: 0;
        background-image: url(/Images/MemberPortal/Project/Common/tab_normal_left.gif);
        background-repeat: no-repeat;
    }

    nav.tabs li:after {
        content: " ";
        display: block;
        height: 25px;
        width: 10px;
        position: absolute;
        right: -10px;
        top: 0;
        background-image: url(/Images/MemberPortal/Project/Common/tab_normal_right.gif);
        background-repeat: no-repeat;
    }

    nav.tabs li.selected {
        background-image: url(/Images/MemberPortal/Project/Common/tab_selected_center.gif);
    }

        nav.tabs li.selected:before {
            background-image: url(/Images/MemberPortal/Project/Common/tab_selected_left.gif);
        }

        nav.tabs li.selected:after {
            background-image: url(/Images/MemberPortal/Project/Common/tab_selected_right.gif);
        }

    nav.tabs li a {
        color: #fff;
    }

    nav.tabs li.selected a {
        color: #000;
    }

nav li.spacer {
    display: block;
    height: 1.1rem;
}

/*.*/
main {
    background: #fff;
    border-radius: 6px;
    border-top-left-radius: 0;
    min-height: 200px;
    padding: 10px 11px 20px;
    margin-bottom: 6px;
}

/*.*/
.pageUtils {
    text-align: right;
    margin-right: 60px;
    margin-bottom: 10px;
}

    .pageUtils .sizeText button {
        vertical-align: middle;
        padding: 0 3px;
    }

    .pageUtils .sizeText span {
        display: inline-block;
        color: #767676;
        font-size: .7rem;
    }

.col-md-3 .pageUtils {
    border-bottom: 1px solid #b7d3e2;
    margin: 0 auto 10px;
    text-align: center;
    width: 100%;
}

/*.*/
.page-section.acrobat .logo {
    display: block;
    margin-top: 3px;
}

/*.*/
footer {
    text-align: center;
    margin-bottom: 10px;
}

    footer .footer-links {
        padding: 16px 10px;
    }

    footer .footer-legal {
        color: #fff;
    }

/*.*/
.validationMsg {
    border: 2px solid #ccc;
    border-radius: 7px;
    padding: 8px 8px 8px 30px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: 6px 6px;
    font-weight: bold;
    line-height: 1.5;
    background-position: 5px center;
}

    .validationMsg.error {
        border-color: #FF0000;
        background-color: #FBDDE9;
        background-image: url(/Images/MemberPortal/Project/Common/error_icon.gif);
    }

    .validationMsg.alert {
        border-color: #FFBA00;
        background-color: #FFFBE1;
        background-image: url(/Images/MemberPortal/Project/Common/alert_icon.gif);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .validationMsg.success {
        border-color: #2AB301;
        background-color: #F3FDE6;
        background-image: url(/Images/MemberPortal/Project/Common/check_icon.gif);
    }

/*for client side form validation */
input.error, select.error, textarea.error {
    border-color: red;
    border-width: 1px;
    padding: 2px 1px;
}

/*for client side form validation - NONSTANDARD version (highlighting only on sides)*/
select.notValid {
    outline: 1px solid red;
}

input.notValid {
    border-left: 2px solid red;
    border-right: 2px solid red;
    border-top-width: 1px;
    border-bottom-width: 1px;
}

/*.*/
input.invalid {
    border: 1px solid red;
}

/*standard page content (headline & text)*/
.standard-content-section {
    margin-bottom: 20px;
}

    .standard-content-section .content-heading {
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
        font-size: 140%;
        padding-bottom: 6px;
        margin: 0;
        font-weight: normal;
    }

    .standard-content-section .content-subheading {
        font-weight: bold;
    }

/*.*/
nav.tabs li.active {
    background-image: url(/Images/MemberPortal/Project/Common/tab_selected_center.gif);
}

    nav.tabs li.active:before {
        background-image: url(/Images/MemberPortal/Project/Common/tab_selected_left.gif);
    }

    nav.tabs li.active:after {
        background-image: url(/Images/MemberPortal/Project/Common/tab_selected_right.gif);
    }

    nav.tabs li.active a {
        color: #000;
    }

/*some more global modules (see member home page for usage examples)*/
.link-list {
    margin-left: 20px;
    list-style-image: url(/Images/MemberPortal/Project/Common/bullet.gif);
}

    .link-list li {
        margin-bottom: 6px;
    }

    .link-list > a {
        /*special bottom link*/
        margin-left: -10px;
    }

    .link-list > li > a {
        border-bottom-style: dotted;
        border-bottom-width: 1px;
        border-bottom-color: #67a6e5;
    }

/*.*/
.date-from-to input, .date-from-to .date-picker {
    margin-bottom: 5px;
    display: block;
}

/*.*/
.blue-title {
    font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 130%;
    color: #005dab;
    font-weight: normal;
}

/*.*/
.genericModalTrigger {
    cursor: pointer;
}

.modalDialog_placeholder .submit {
    text-align: center;
    margin-top: 12px;
}

    .modalDialog_placeholder .submit a,
    .modalDialog_placeholder .submit button {
        min-width: 96px;
        text-align: center;
        display: inline-block;
        color: #000;
        line-height: 23px;
        font-weight: bolder;
        font-family: inherit;
        font-size: 12px;
        padding: 0;
        background: #e7f9cb;
        background: -moz-linear-gradient(top, #e7f9cb 0%, #c2e09f 100%);
        background: -webkit-linear-gradient(top, #e7f9cb 0%, #c2e09f 100%);
        background: linear-gradient(to bottom, #e7f9cb 0%, #c2e09f 100%);
        border: 1px solid #8BC558;
        border-radius: 6px;
        cursor: pointer;
    }

.k-dialog-titlebar {
    background: #f1f8e9;
    background: -moz-linear-gradient(top, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%);
    background: -webkit-linear-gradient(top, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%);
    background: linear-gradient(to bottom, #f1f8e9 0%, #deefd0 50%, #f1f8e9 100%) !important;
    border-bottom: 1px solid #B9CE96;
}

/*for boxes with border style title e.g. verify address / shipping address forms*/
.title-border .title > h1,
.title-border .title > h2 {
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/*.*/

.expanderList .handle {
    font-weight: bold;
    margin-bottom: 1rem;
}

.expanderList .panel {
    margin-bottom: 1rem;
}

    .expanderList .panel ul {
        list-style-image: url(/Images/MemberPortal/Project/Common/bullet.gif);
        margin-left: 25px;
        margin-bottom: 1rem;
    }

        .expanderList .panel ul li {
            margin-bottom: .25rem;
        }

.expanderList .collapsed .panel {
    display: none;
}

.expanderList .controls {
    margin-bottom: 1rem;
}

/*.*/
.backToTop {
    color: #235b86;
}

/*kendo tooltips - global style*/
.k-tooltip {
    padding: 6px;
    min-height: 30px;
    min-width: 200px;
    max-width: 400px;
    text-align: left;
}

/*assistive technology form links*/
.assistiveTechnologyForm {
    display: inline-block;
}

    .assistiveTechnologyForm input[type=submit] {
        background: none;
        border: none;
        font-size: .66666666rem;
        color: #235b86;
        display: inline-block;
        padding: 0;
        margin: 0;
        height: auto;
        line-height: initial;
        margin-left: 10px;
        border-radius: 0;
    }

/*Global PDF Generation Styles*/
.k-pdf-export,
kendo-pdf-document .pdf-template {
    display: block !important;
}

.pdf-template {
    font-family: 'TNR';
    font-size: 6pt;
    background: #fff;
    display: none;
    width: 198mm;
    margin: 0 auto;
}

    .pdf-template .label,
    .pdf-template th,
    .pdf-template td,
    .pdf-template span,
    .pdf-template div,
    .pdf-template ul,
    .pdf-template li,
    .pdf-template a,
    .pdf-template dd,
    .pdf-template dt,
    .pdf-template strong {
        font-size: 7pt;
    }

    .pdf-template a {
        color: blue;
        border-bottom: 1px solid blue;
    }

    .pdf-template .page {
        height: 147mm;
        position: relative;
    }

        .pdf-template .page .header {
            border-bottom: 2px solid #ff0000;
            text-align: center;
            font-size: 18px;
        }

            .pdf-template .page .header .logo {
                text-align: center;
            }

                .pdf-template .page .header .logo img {
                    display: inline;
                    width: 180px;
                }

    .pdf-template .header h1 {
        font-size: 10pt;
        font-weight: bold;
        font-family: 'TNR-B';
    }

    .pdf-template .header .date {
        font-size: 8pt;
        text-align: right;
        font-weight: bold;
        font-family: 'TNR-B';
        margin: 10px 10px 8px 0;
    }

        .pdf-template .header .date span {
            font-size: 7pt;
        }

    .pdf-template .body {
        margin-top: 30px;
        border-top: 1px solid #000;
        padding: 8px 4px;
    }

    .pdf-template .label,
    .pdf-template th {
        text-align: left;
        font-weight: 700;
        font-family: 'TNR-B';
    }


    .pdf-template .page .footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        border-top: 2px solid #ff0000;
        padding: 16px 10px 0 0;
    }

        .pdf-template .page .footer span {
            display: block;
            text-align: right;
        }


@font-face {
    font-family: 'TNR';
    src: url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman.ttf), url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman.eot);
    /*
	src: url(/Css/MemberPortal/Project/Common/KendoUI/Fonts/TNR/times_new_roman.eot);
    src: url(/Css/MemberPortal/Project/Common/KendoUI/Fonts/TNR/times_new_roman.eot) format('embedded-opentype'), url(/Css/MemberPortal/Project/Common/KendoUI/Fonts/TNR/times_new_roman.ttf) format('truetype');
	*/
}

@font-face {
    font-family: 'TNR-B';
    font-weight: 700;
    src: url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman_b.ttf), url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman_b.eot);
    /*
    src: url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman_b.eot);
    src: url(/Css/MemberPortal/Project/Common/KendoUI/fonts/TNR/times_new_roman_b.eot) format('embedded-opentype'), url(/Css/MemberPortal/Project/Common/KendoUI/Fonts/TNR/times_new_roman_b.ttf) format('truetype');
	*/
}

/* Global header logo overrides for domain-specific alternate logos that need to be manually sized/positioned */
body.missouri-care header .banner .logo {
    padding: 10px 0 0 0;
}

body.ohana header .banner .logo,
body.ohana-ccs header .banner .logo,
body.south-carolina header .banner .logo {
    padding: 0;
}

body.ohana header .banner .logo {
    margin-top: -8px;
}

body.ohana-ccs header .banner .logo {
    margin-top: -4px;
}

body.south-carolina header .banner .logo {
    margin-top: -8px;
}

    body.missouri-care header .banner .logo img,
    body.ohana header .banner .logo img,
    body.ohana-ccs header .banner .logo img,
    body.south-carolina header .banner .logo img {
        /*we must use importants because the height and width are being set with inline styles in Sitecore in some cases*/
        height: auto !important;
        width: auto !important;
    }

body.nebraska header .banner .logo img {
    width: 350px !important;
    height: auto !important;
}

body.flcms header .banner .logo {
    padding-top: 0;
    margin-top: -10px;
}

/*SPANISH LANGUAGE OVERRIDES*/
/*Spanish only...*/

html:lang(es) .login-form label {
    /*mimic english*/
    width: 134px;
    text-align: right;
    /*mimic legacy...
    width: 100%;
    display: block;
    text-align: center;
    */
}

html:lang(es) .header .banner .right {
    width: 250px;
}

/*Possibly apply to English as well...*/
html:lang(es) input[type='submit'],
html:lang(es) input[type='button'],
html:lang(es) a.button,
html:lang(es) a.cancelLink {
    white-space: normal;
    line-height: normal;
    height: auto;
    padding: 5px 8px;
}

html:lang(es) .box.green > .title {
    position: relative;
    height: auto;
    min-height: 30px;
    top: 0;
}

    html:lang(es) .box.green > .title h2 {
        line-height: 1;
        padding: 6px 26px 6px 6px;
    }

html:lang(es) .box.green > .content {
    margin-top: -10px;
    padding: 20px 10px 10px 10px;
}

/*PLEASE DO NOT PUT MODULE-SPECIFIC (COMPONENT-LEVEL) STYLES IN THE GLOBAL STYLESHEET. Use modules.css instead. */
