@-ms-viewport { width: device-width; }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', Sans-Serif;
    font-size: 14px;
    line-height: 1.4em;
    color: #666;

}
@media (min-width: 750px) {
    body {
        font-size: 13px;
    }
}

/* Headers */
h1, h2, h3, h4, h5 {
    margin: 0 0 5px 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.2em;
}
h1 {
    font-size: 24px;
    line-height: 30px;
    color: #003B5C;
}
h2 {
    font-size: 20px;
    line-height: 25px;
    color: #666;
}
h2.greyBack {
    background: #f2f2f1;
    padding: 8px 10px 6px 10px;
}
    h2.widgetTitle {
        margin: 0;
        color: #333;
    }
    h2.widgetTitle.blueBack {
        padding: 8px 10px 6px 10px;
        color: #fff;
        background: #4298B5;
    }
h3 {
    font-size: 18px;
    line-height: 23px;
    color: #003B5C;
}
/*.blueBack {
    background: #4298b5;
    color: #FFFFFF;
    margin: 0;
    padding: 8px 10px 6px;
}*/
h4 {
    font-size: 18px;
    line-height: 23px;
    color: #4298B5;
}
h5 {
    font-size: 16px;
    line-height: 21px;
    color: #003B5C;
}

/* Other text */
p {
    margin:0 0 1.2em 0;
    padding:0;
}

.subHeadGrey {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}
.subHeadBlue {
    font-size:16px;
    color:#003B5C;
    font-weight:bold;
}
.subHeadLightBlue {
    font-size: 16px;
    color: #4298B5;
    font-weight: bold;
}
.italic {
    font-style:italic;
}
.noteSmall {
    font-size:11px;
    color:#666;
}
.noteBold {
    font-weight:bold;
    font-size:11px;
    color:#666;
}

/* Quotes */
.quoteLightBlue,
.quoteGrey {
    font-style:italic;
    font-size: 13px;
    padding:0 16px;
    text-align:center;
}
    .quoteGrey {
        color:#666;
    }
    .quoteLightBlue {
        color:#4298B5;
    }
    .quoteLightBlue a,
    .quoteGrey a {
        text-decoration: none;
    }

/* Links */
a {
    color: #4298B5;
    text-decoration: underline;
    font-weight: normal;
}
a:hover {
    color: #666;
}
a.orange {
    color:#ae8003;
}


/* Images */
img {
    border:0;
    max-width: 100%;
}
img.imageLeft {
    float:left;
    margin:0 10px 10px 0;
}
img.imageRight {
    float:right;
    margin:0 0 10px 10px;
}
img.imageborder {
    padding: 7px;
    border: 1px solid #C4D4E3;
    margin: 5px;
}
img.imageborderLeft {
    float: left;
    padding: 7px;
    border: 1px solid #C4D4E3;
    margin: 5px 8px 5px 0;
}
img.imageborderRight {
    float: right;
    padding: 7px;
    border: 1px solid #C4D4E3;
    margin: 5px 0 5px 8px;
}

@media (max-width: 450px) {
    img.imageLeft,
    img.imageRight,
    img.imageborderLeft,
    img.imageborderRight {
        float: none;
        display: block;
        margin: 0 auto 10px;
    }
}

/* Content Lists */
.RTF ul {
    padding: 0 0 0 15px;
    margin: 0 0 15px 15px;
    list-style-type: disc;
}
    .RTF ul > li > ul {
        margin: 0 0 5px 15px;
        list-style-type: circle;
        color: #5d5d5d;
    }
        .RTF ul > li > ul > li > ul {
            list-style-type: none;
            font-size: 12px;
        }
            .RTF ul > li > ul > li > ul li {
                background: url(../webimages/bullet_small-blue.png) no-repeat 0 5px;
                padding: 0 0 0 15px;
            }
.RTF ol {
    padding: 0 0 0 15px;
    margin: 0 0 15px 15px;
    list-style-type: none;
    *list-style-type: decimal;
    counter-reset: item;
}
    .RTF ol > li:before {
        content: counter(item) ") ";
        counter-increment: item;
    }
    .RTF ol ol {
        margin: 0 0 5px 15px;
        color: #5d5d5d;
        counter-reset: item;
        *list-style-type: upper-alpha;
    }
        .RTF ol ol > li:before {
            content: counter(item, upper-alpha) ") ";
            counter-increment: item;
        }
        .RTF ol ol ol {
            font-size: 12px;
            counter-reset: item;
            *list-style-type: lower-alpha;
        }
            .RTF ol ol ol li:before {
                content: counter(item, lower-alpha) ") ";
                counter-increment: item;
            }

/* Buttons */
.blueButton {
    display:inline-block;
    min-width: 110px;
    height:21px;
    background: #003a5d;
    border-radius: 15px;
    border: 1px solid #267292;
    text-align:center;
    color:#fff;
    font-size:12px;
    font-weight:normal;
    cursor:pointer;
}
    .blueButton span {
        display:inline-block;
        height:24px;
        line-height:20px;
    }
    .blueButton:hover {
        color:#fff;
        font-weight:normal;
    }

.greyButton,
.greyButtonReverse {
    display:inline-block;
    height:19px;
    padding:0 0 0 11px;
    background:url(../webimages/grey-button.png) no-repeat left -19px;
    text-align:center;
    color:#333;
    font-size:10px;
    text-decoration:none;
    cursor:pointer;
}
.greyButtonReverse {
    background:url(../webimages/grey-button_flipped.png) no-repeat left -19px;
    padding:0 0 0 20px;
}
    .greyButton span,
    .greyButtonReverse span {
        display:inline-block;
        height:19px;
        padding:0 21px 0 0;
        background:url(../webimages/grey-button.png) no-repeat right top;
        line-height:19px;
    }
    .greyButtonReverse span {
        background:url(../webimages/grey-button_flipped.png) no-repeat right top;
        padding:0 15px 0 0;
    }
    .greyButton:hover,
    .greyButtonReverse:hover {
        font-weight:normal;
        color: #ae8003;
    }

.whiteButton {
    display: inline-block;
    height: 18px;
    padding: 0 10px;
    text-align: center;
    color: #343434;
    font-size: 10px;
    line-height: 16px;
    cursor: pointer;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #999;
    font-weight: normal;
    text-decoration: none;
}
    .whiteButton:after {
        content: "";
        display: inline-block;
        margin-left: 5px;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 7px solid #4298B5;
    }
    .whiteButton:hover {
        font-weight: normal;
        color: #4298B5;
        border: 1px solid #4298B5;
    }

.whiteButtonReverse {
    display: inline-block;
    height: 18px;
    padding: 0 10px;
    text-align: center;
    color: #343434;
    font-size: 10px;
    line-height: 16px;
    cursor: pointer;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #999;
    font-weight: normal;
}
    .whiteButtonReverse:before {
        content: "";
        display: inline-block;
        margin-right: 5px;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-right: 7px solid #4298B5;
    }
    .whiteButtonReverse:hover {
        font-weight: normal;
        color: #4298B5;
        border: 1px solid #4298B5;
    }

/* Hard returns */
hr {
    margin-bottom:10px;
    height:1px;
    background:#333;
    border:0;
    clear: both;
}
hr.dottedRule {
    margin-bottom:18px;
    height:1px;
    background:url(../webimages/dashed-hr.png) repeat-x 0 0;
    border:0;
}
* + html hr.dottedRule {
    border-top: 1px dashed #a0a0a0;
    background: transparent;
}

/* Tables */
table.styled-table {
    margin: 0 0 1.2em;
    border-collapse:collapse;
    background:#fff;
    border:1px solid #666;
    font-size:12px;
}
    .styled-table td {
        padding:5px;
        border:1px solid #666;
    }
    .styled-table thead th, .styled-table thead td {
        padding:5px;
        background:#4298B5;
        border:1px solid #666;
        font-weight: bold;
        font-size:14px;
        color:#fff;
        text-align:center;
    }
table.padded,
th.padded,
td.padded {
    padding: .6em .8em;
}


/* Form styles */
@media (max-width: 750px) {
    .form {
        padding: 0 10px;

    }
}

label {
    font-size:11px;
    text-transform:uppercase;
}
.floatLabel {
    display:inline-block;
    height:25px;
    line-height:25px;
    text-transform:none;
}
input[type="text"],
textarea {
    border:1px solid #dedede;
    box-shadow:inset 1px 2px 5px #f4f4f4;
    margin-left:0;
    padding-left:0;
}
.checkbox,
.radio {
    width: 19px;
    height: 25px;
    padding: 0 5px 0 0;
    background: url(../webimages/checkbox.png) no-repeat;
    display: block;
    clear: left;
    float: left;
}
.radio {
    background: url(../webimages/radio.png) no-repeat;
}
.select {
    position: absolute;
    width: 135px; /* With the padding included, the width is 190 pixels: the actual width of the image. */
    height: 26px;
    padding: 0 24px 0 8px;
    color: #333;
    font: 11px/26px arial,sans-serif;
    background: url(../webimages/select-box-bg.png) no-repeat;
    overflow: hidden;
}
.main input[type="submit"] {
    width:109px;
    height:19px;
    padding:0 !important;
    background: #fff url(../webimages/submit-button.png);
    background-repeat:no-repeat;
    background-color:transparent;
    background-position: right;
    border:0;
    font-size:11px;
    line-height:19px;
    cursor:pointer;
    border-radius: 15px;
    border: 1px solid #999;
    font-weight: normal;

}
.main input[type="reset"] {
    width:93px;
    height:19px;
    padding:0 !important;
    background: #fff url(../webimages/reset-button.png);
    background-repeat:no-repeat;
    background-color:transparent;
    border:0;
    font-size:11px;
    line-height:19px;
    cursor:pointer;
    border-radius: 15px;
    border: 1px solid #999;
    font-weight: normal;
}

.center {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* Clearfix */
.group:after {
  content: "";
  display: table;
  clear: both;
}

/* Modals */
.Overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .50;
    filter: alpha(opacity=50);
    z-index: 590;
}
.Overlay.active {
    display: block;
}

.Modal{
    display: none;
    position: absolute;
    left: 50%;
    width: 890px;
    margin: 0 0 0 -445px;
    padding: 30px;
    z-index: 600;
    border: 8px solid #fff;
    border-radius: 10px;
    background: url(../webimages/bg-modal.jpg) repeat 0 0;
    box-shadow: 5px 0px 15px rgba(0,0,0,0.6);
    color: #fff;
}

@media (max-width: 890px){
    .Modal {
        position: fixed;
        width: 100%;
        height: 100%;
        min-height: 100%;
        top:0 !important;
        bottom:0 !important;
        left: 0 !important;
        right:0 !important;
        margin:0 auto !important;
        margin-left: auto  !important;
        padding: 10px;
        border: 5px solid #fff;
        border-radius: 0;
        box-shadow: none;
        overflow-y: scroll;
        overflow-x: hidden;
    }
}
.Modal.active {
    display: block;
}
.closeModal,
.closeContentModal {
    position: absolute;
    display: block;
    top: -7px;
    right: -7px;
    height: 34px;
    width: 34px;
    background: url(../webimages/button-close-modal.png) no-repeat 0 0;
}
.contentModal {
    background: #fff;
    color: #333;
    overflow: hidden;
}
    .contentModal .closeContentModal,
    .contentModal .closeModal {
        top: 0px;
        right: 0px;
    }
    .contentModal .contentWrap {
        width: 810px;
        max-height: 845px;
        padding: 0;
    }
    .touch .contentModal .contentWrap {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
.videoModal {
    padding-top: 40px;
    text-align: center;
}
    @media (max-width: 890px) {
        .contentModal .contentWrap {
            width: 100%;
            max-height: auto;
            height: 100%;
        }
            .contentModal .contentWrap iframe {
                width: 100% !important;
                height: 100% !important;
            }
    }


/* HEADER */
.siteHeader {
    background: #4298B5;
}
    @media (max-width: 1023px) {
        .utilityNavWrap,
        .siteHeader .topBorder {
            display: none;
        }
    }
    @media (min-width: 1024px) {
        .siteHeader .topBorder {
            height: 8px;
            background: #003b5c;
            -webkit-box-shadow: 0px 3px 10px 0px rgba(50, 50, 50, 0.5);
            -moz-box-shadow:    0px 3px 10px 0px rgba(50, 50, 50, 0.5);
            box-shadow:         0px 3px 10px 0px rgba(50, 50, 50, 0.5);
        }
        .utilityNavWrap {
            max-width: 1024px;
            margin: 0 auto 5px;
        }
            .utilityNav {
                float: right;
                margin: 0;
                padding: 0 10px;
                list-style: none;
                -webkit-box-shadow: 0px 3px 10px 0px rgba(50, 50, 50, 0.5);
                -moz-box-shadow:    0px 3px 10px 0px rgba(50, 50, 50, 0.5);
                box-shadow:         0px 3px 10px 0px rgba(50, 50, 50, 0.5);
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
                background: #003b5c;
            }
                .utilityNav li {
                    float: left;
                }
                .utilityNav li:after {
                    content: "";
                    display: inline-block;
                    vertical-align: bottom;
                    width: 1px;
                    height: 10px;
                    background: #36617b;
                }
                .utilityNav li:last-child:after {
                    background: none;
                }
                    .utilityNav li a {
                        display: inline-block;
                        vertical-align: top;
                        padding: 0 10px 7px 10px;
                        color: #fff;
                        text-decoration: none;
                        text-transform: uppercase;
                        font-size: 11px;
                        line-height: 11px;

                    }
                    .utilityNav li a:hover {
                        color: #4298b5;
                    }
    }

.headerWrap {
    height: 44px;
    padding: 0 10px;
}
    @media (min-width: 1024px) {
        .headerWrap {
            height: auto;
        }
    }

    .header {
         max-width: 1024px;
         height: 44px;
         margin: 0 auto;
         overflow: hidden;
    }
        @media (min-width: 1024px) {
             .header {
                height: auto;
                overflow: visible;
            }
        }
        .header .logo {
            float: left;
            width: 65px;
        }
            .header .logo img {
                height: 35px;
                margin-top: 4px;
            }
        @media (min-width: 1024px) {
            .header .logo {
                position: relative;
                top: -10px;
                width: 204px;
                height: auto;
                padding: 0;
            }
            .header .logo img {
                height: auto;
                margin-top: 0;
            }
        }
        .header .supportMoody {
            float: right;
            margin: 10px 15px 0 0;
        }
        .header .supportMoody .blueButton {
            margin: 3px 0 0;
            text-decoration: none;
        }
        @media (max-width: 1023px) {
            .header .supportMoody {
                display: none;
            }
        }
        .headerWrap .search {
            float: right;
            position: relative;
            width: 261px;
            height: 33px;
            margin: 10px 0 0 0;
        }
            .headerWrap .searchTxt {
                float: left;
                width: 228px;
                height: 25px;
                background: #fff;
                border-radius: 15px;
                border: 1px solid #3b7f9c;
                text-align: center;
                color: #003b5c;
                font-size: 11px;
                line-height: 25px;
            }
            .headerWrap .searchButton {
                float: left;
                margin: 0 0 0 5px;
                padding: 6px;
                background: #fff;
                text-align: center;
                border: 1px solid #3b7f9c;
                border-radius: 50%;
                font-size: 11px;
                line-height: 1;
                cursor: pointer;
                font-family: sans-serif;
                -webkit-appearance: none;
            }
            .headerWrap .searchButton::-moz-focus-inner {
                border:0;
                padding:0;
            }
        @media (max-width: 1023px) {
            .header .search {
                display: none;
            }
        }

    @media (max-width: 1023px) {
        .mobileButtons {
            float: right;
            position: relative;
            height: 44px;
            margin: 0 16px 0 0;
        }
        .mobileButtons .mobileSearchBtn {
            position: absolute;
            right: 50px;
            top: 50%;
            width: 26px;
            height: 19px;
            margin: -9.5px 0 0;
            background: url(../webimages/search-icon.svg) no-repeat 0 0;
            border: none;
            cursor: pointer;
            -webkit-appearance: none;
            outline: none;
        }
        .mobileButtons .mobileNavBtn {
            position: absolute;
            right: 0;
            top: 50%;
            width: 29px;
            height: 18px;
            margin: -9px 0 0;
            background: url(../webimages/menu-icon.svg) no-repeat 0 0;
            border: none;
            cursor: pointer;
            -webkit-appearance: none;
            outline: none;
        }
        .mobileNavOpen .mobileButtons .mobileNavBtn {
            display: none;
        }
        .mobileButtons .mobileNavCloseBtn {
            display: none;
            position: absolute;
            right: 0;
            top: 50%;
            width: 29px;
            height: 30px;
            margin: -19px 0 0;
            background: none;
            border: none;
            font-weight: bold;
            color: #fff;
            font-size: 30px;
            line-height: 1;
            cursor: pointer;
            text-align: center;
            -webkit-appearance: none;
            outline: none;
        }
        .mobileNavOpen .mobileButtons .mobileNavCloseBtn {
            display: inline-block;
        }
        .headerWrap .mobileSearch .search .searchTxt {
            width: 85%;
        }
    }

    .mobileSearch {
        display: none;
        position: absolute;
        top: 44px;
        left: 0;
        height: 0;
        width: 100%;
        z-index: 40;
        background: #4298B5;
        text-align: center;
        overflow: hidden;
    }
        .mobileSearch.on {
            display:block;
        }
    .mobileSearch.open {
        display: block;
        top: 77px;
        height: 50px;
    }

    .mobileSearch .search {
        float: none;
        left: 0;
        right: 0;
        padding: 11px 5%;
        text-align: center;
        height: 50px;
        width: 100%;
        background: #4298B5;
    }

    @media (min-width: 1024px) {
        .mobileButtons,
        .mobileSearch {
            display: none;
        }
    }

    /* Primary Nav */
    @media (max-width: 1023px) {
        .primaryNav {
            display: none;
            position: absolute;
            top: 44px;
            left: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            background: #fff;
            list-style: none;
            -webkit-transition: -webkit-transform 1s ease;
            transition: transform 1s ease;
            -webkit-box-shadow: 0 20px 15px -15px rgba(0, 0, 0, 0.25);
            box-shadow: 0 20px 15px -15px rgba(0, 0, 0, 0.25);
        }
        .primaryNav.show {
            display: block;
        }
        .mobileNavOpen .primaryNav {
            left: 0;
        }
            .primaryNav > li > a {
                display: block;
                padding: 20px 0;
                background: #4298B5;
                border-top: 1px solid #fff;
                border-bottom: 1px solid #fff;
                color: #fff;
                text-align: center;
                text-decoration: none;
            }
    }

    @media (min-width: 1024px) {
        .primaryNavWrap {
            max-width: 1024px;
            margin: 0 auto;
            border-top: 1px solid #fff;
            text-align: center;
            overflow: hidden;
        }
            .primaryNav {
                display: table;
                margin: 0;
                padding: 0;
                width: 100%;
                /* only use negative margin if the browser supports calc*/
                /*width: calc(100% + 40px);
                margin: 0 calc(-20px);*/
                list-style:none;
            }
            .flexbox .primaryNav {
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -ms-flex-wrap: nowrap;
                -webkit-flex-wrap: nowrap;
                flex-wrap: nowrap;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
            }
                .primaryNav li {
                    display: table-cell;
                }
                .flexbox .primaryNav li {
                    display: block;
                }
                    .primaryNav li a {
                        display:block;
                        padding: 10px 20px;
                        font-size:13px;
                        font-weight:bold;
                        text-decoration:none;
                        color:#fff;
                    }
                    .primaryNav li a.active,
                    .primaryNav li a:hover {
                        background: #fff;
                        color: #4298b5;
                    }
                    .primaryNav li a.activeOn {
                        color: #DAA520;
                    }
                    .primaryNav li a.activeOn:hover {
                        background: #fff;
                    }
    }



/* TOP NAV DROPDOWNS */
.navItems {
    display: none;
    -webkit-transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
}
@media (max-width: 1023px) {
    .navItems {
        position: absolute;
        top: 44px;
        left: 100%;
        width: 100%;
        background: #f2f2f1;
    }
    .navItems.show {
        display: block;
    }
    .mobileNavLvl2Open .navItems {
        left: 0;
    }
}
@media (min-width: 1024px) {
    .navItems {
        position: relative;
        z-index: 760;
        max-width: 1024px;
        margin: 0 auto;
        overflow: hidden;
        background: #fff;
    }
}

    .navItem {
        display: none;
    }

    .navItem h2,
    .navItem h3,
    .navItem h5 {
        margin: 0;
    }

    .navItem h5 {
        font-size: 14px;
    }

    .navItem .sideBar h3 {
        margin:0 0 5px 0;
        font-size:21px;
        line-height:26px;
        color:#333;
    }

    .navItem .navClose {
        display: none;
    }

    .navItem .mobileNavClose {
        display: block;
        padding: 20px 0;
        background: #4298B5;
        border: 1px solid #fff;
        color: #fff;
        text-align: center;
        text-decoration: none;
    }
    .navItem .mobileNavClose:before {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin: 0 5px 0 0;
        border-right: 7px solid #fff;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    @media (min-width: 1024px) {
        .navItem .navClose {
            position: absolute;
            display: block;
            top: 10px;
            right: 15px;
            width: 22px;
            height: 23px;
            color: #003b5c;
            /*border: 2px solid #003b5c; circle removed per client
            border-radius: 50%;*/
            text-align: center;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
        }
        .navItem .mobileNavClose {
            display: none;
        }
    }

    .navItem .menu {
        padding: 20px;
    }

    @media (min-width: 1024px) {
        .navItem .menu {
            position: relative;
            float: left;
            width: 70%;
            height: 315px;
        }
        .navItem .col {
            float: left;
            width: 33.3333%;
            padding: 0 25px 0 15px;
            background: url(../webimages/dotted-vertical-divider.png) no-repeat 0 0;
        }
        .navItem .col:first-child {
            background: none;
            padding: 0 25px 0 0;
        }
        .navItem .col {
            height: 285px;
        }
        .navItem .col .bottom {
            position: absolute;
            bottom: 10px;
            right: 10px;
        }
    }
    .navItem .col ul {
        margin: 0 0 15px 0;
        padding: 0;
        list-style: none;
    }
    .navItem .col li {
        padding: 2px 0;
    }
    .navItem .col li a {
        font-weight: 400;
        font-size: 12px;
        text-decoration: none;
        line-height: 16px;
        color: #003B5C;
    }

    /* sidebar section for primary nav dropdown */
    @media (max-width: 1023px) {
        .navItem .sideBar {
            display: none;
        }
    }

    @media (min-width: 1024px) {
        .navItem .sideBar {
            float: left;
            width: 30%;
            min-height: 315px;
            padding: 25px 25px 15px;
            background: #f2f2f1;
            color: #666;
            overflow: hidden;
        }
        .navItem .sideBar img {
            margin: 0 0 10px 0;
        }
        .navItem .sideBar .whiteButton {
            float: right;
        }
    }


/* MAIN CONTENT */
.mainWrap {
    position: relative;
}
.mainWrap.hidden {
    height: 0;
    overflow: hidden;
}
.main {
    max-width: 1024px;
    margin: 0 auto;
}
@media (max-width: 1040px) {
    .main {
        padding: 0 10px;
    }
}
.twoColWrapper {
    margin-top: 20px;
}
@media (max-width: 749px) {
    .twoColWrapper {
        margin-top: 0;
    }
}


/* LEFT NAV */
@media (max-width: 749px) {
    .leftNav {
        margin: 0 -10px;
    }
}
.leftNav .head {
    position: relative;
    padding: 10px;
    margin: 0;
    background: #4298B5;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}

@media (max-width: 749px) {
    .leftNav .head {
        font-size: 20px;
    }
    .leftNav .head .headTitle {
        display: inline-block;
        max-width: 80%;
        margin-right: 10px;
    }
    .leftNav .head:after {
        content: "";
        position: absolute;
        top: 40%;
        display: inline-block;
        margin: 0 0 0 5px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 9px solid #fff;
    }
        .leftNav.open .head:after {
            border-top: 9px solid #fff;
            border-right: 5px solid transparent;
            border-left: 5px solid transparent;
        }
}
    .leftNav .head a {
        color: #fff;
        text-decoration: none;
            }
    .leftNav .head a:hover {
        color: #fff;
        text-decoration: none;
    }
    .leftNav ul a {
        display: block;
        text-decoration: none;
    }

/* first tier nav */
.firstTier {
    margin: 0;
    padding: 5px 10px;
    list-style: none;
    font-size: 18px;
}
@media (max-width: 749px) {
    .firstTier {
        display: none;
        font-size: 14px;
    }
    .open .firstTier {
        display: block;
    }
}
    .firstTier > li {
        border-top: 1px dashed #979796;
    }
    .firstTier > li:first-child {
        border-top: none;
    }
        .firstTier > li > a {
            padding: 10px 0 8px 0;
            color: #666;
            font-weight: 700;
        }
        .firstTier > li > a:hover,
        .firstTier > li.selected > a {
            color: #4298b5;
        }
        .firstTier > li.hasChildren > a {
            padding: 10px 25px 8px 0;
        }
        .firstTier > li.hasChildren.isOpen > a {
            padding: 7px 15px 0 0;
        }
        .firstTier > li.hasChildren > a:after {
            content: "";
            display: inline-block;
            position: relative;
            left: 5px;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 7px solid #003b5c;
        }
        .firstTier > li.hasChildren.isOpen > a:after {
            content: "";
            display: inline-block;
            position: relative;
            top: 3px;
            left: 3px;
            border-top: 8px solid #003b5c;
            border-right: 5px solid transparent;
            border-left: 5px solid transparent;
        }

        /* second tier nav */
        .secondTier {
            display: none;
            list-style: none;
            margin: 0 0 0 10px;
            padding: 0 0 5px 10px;
            font-size: 13px;
        }
        li.isOpen > .secondTier {
            display: block;
        }
            .secondTier > li {
                border-top: 1px dashed #979796;
            }
            .secondTier > li:first-child {
                border-top: none;
            }
                .secondTier > li > a {
                    padding: 8px 0;
                    color: #666;
                    font-weight: 700;
                }
                .secondTier > li > a:hover {
                    color: #003b5c;
                    /*font-weight: 400;*/
                }
                .secondTier > li.selected > a {
                    font-weight: bold;
                }
                .secondTier > li.hasChildren > a {
                    padding: 8px 13px 8px 0;
                }
                .secondTier > li.hasChildren > a:after {
                    content: "";
                    display: inline-block;
                    position: relative;
                    top: 1px;
                    left: 5px;
                    border-top: 5px solid transparent;
                    border-bottom: 5px solid transparent;
                    border-left: 7px solid #003b5c;
                }
                .secondTier > li.hasChildren.isOpen > a:after {
                    content: "";
                    display: inline-block;
                    position: relative;
                    top: 5px;
                    left: 3px;
                    border-top: 8px solid #003b5c;
                    border-right: 5px solid transparent;
                    border-left: 5px solid transparent;
                }

                /* third tier nav */
                .thirdTier {
                    display: none;
                    margin: 0;
                    padding: 5px 0;
                    list-style: none;
                    border-top: 1px dashed #979796;
                }
                li.isOpen > .thirdTier {
                    display: block;
                }
                    .thirdTier > li {
                        padding: 0 0 0 10px;
                        margin: 0 0 0 10px;
                        background: url(../webimages/bullet_small-blue.png) no-repeat left 6px;
                    }
                        .thirdTier > li > a {
                            color: #666;
                            padding: 2px 0;
                            font-weight: 700;
                        }
                        .thirdTier > li > a:hover {
                            color: #003b5c;
                        }
                        .thirdTier > li.selected > a {
                            font-weight: 700;
                        }

                        /* fourth tier nav */
                        .fourthTier {
                            display: none;
                            margin: 0;
                            padding: 5px 0;
                            list-style: none;
                        }
                        li.isOpen > .fourthTier {
                            display: block;
                        }
                            .fourthTier > li {
                                padding: 0 0 0 10px;
                                margin: 0 0 0 10px;
                                background: url(../webimages/bullet_small-blue.png) no-repeat left 6px;
                            }
                                .fourthTier > li > a {
                                    color: #666;
                                    padding: 2px 0;
                                    font-weight: 700;
                                }
                                .fourthTier > li > a:hover {
                                    color: #003b5c;
                                }
                                .fourthTier > li.selected > a {
                                    font-weight: 700;
                                }

.leftNavTag {
    background: #f2f2f1;
    padding: 7px 15px;
    margin: 0 0 20px;
}
@media (max-width: 749px) {
    .leftNavTag {
        display: none;
        padding: 7px 10px;
    }
    .open .leftNavTag {
        display: block;
    }
}

    .leftNavTag ul {
        margin: 0;
        padding: 5px 0;
        list-style: none;
    }
        .leftNavTag li {
            padding: 2px 0;
        }
            .leftNavTag li a {
                display: inline-block;
                color: #666;
                font-weight: 600;
            }
            .leftNavTag li a:before {
                content: "";
                margin-right: 5px;
                display: inline-block;
                border-style: solid;
                border-width: 5px 0 5px 8px;
                border-color: transparent transparent transparent #4097b5;
            }
            .leftNavTag li a:hover {
                color: #003B5C;
                font-weight: 600;
            }
.contentCallout {
    margin: 20px 0;
}


/* BREADCRUMBS */
.breadcrumbs {
    margin: 0 0 20px;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
}
@media (max-width: 749px) {
    .breadcrumbs {
        margin: 0 -10px;
        padding: 7px 10px;
        background: #bebebb;
        font-size: 12px;
    }
}
    .breadcrumbs ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .breadcrumbs li {
            float: left;
        }
            .breadcrumbs li a {
                text-decoration: none;
            }
        @media (min-width: 750px) {
            .breadcrumbs li {
                height: 24px;
                background: url(../webimages/breadcrumbs-bg.png) repeat-x 0 0;
            }
        }
            .breadcrumbs .crumb {
                display: inline-block;
                color: #fff;
            }
            @media (max-width: 749px) {
                .breadcrumbs .crumb:after {
                    content: ">";
                    padding: 0 5px;
                    font-weight: 400;
                }
                .breadcrumbs li:last-child .crumb:after {
                    content: "";
                }
                .breadcrumbs li:last-child .crumb {
                    font-weight: 400;
                }
            }
            @media (min-width: 750px) {
                .breadcrumbs .crumb {
                    padding: 0 5px 0 20px;
                    height: 24px;
                    background: url(../webimages/breadcrumbs-arrow.png) no-repeat top left;
                    line-height: 24px;
                    font-weight: 400;
                }
                .breadcrumbs li:first-child .crumb {
                    padding: 6px 0 0 6px;
                    background: none;
                    height: 18px;
                    line-height: 12px;
                }
            }



/* FOOTER */
.footerWrapper {
    position: relative;
    margin-top: 40px;
    background: #4298B5;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
}
.footerWrapper.hidden {
    height: 0;
    overflow: hidden;
}
    .footerBar {
        position:relative;
        /*top:-5px;*/
        height: 5px;
        width:100%;
        /*background: #003b5c;*/
    }
        .footerIcon {
            position:relative;
            width:100%;
            text-align:center;
        }
    .footer {
        max-width:1024px;
        margin:0 auto;
        padding:50px 0 0;
        overflow:hidden;
    }
        .footer h1 {
            margin:0;
            text-transform:uppercase;
            font-size: 21px;
            color:#fff;
        }
        .footer h2 {
            margin:0 0 5px 0;
            font-size:12px;
            line-height:17px;
            font-weight:bold;
           /* font-family:Sans-Serif;*/
            color:#fff;
        }
        .footer hr {
            margin-bottom:10px;
            height:2px;
            background:url(../webimages/dotted-border.png) repeat-x 0 0;
            border:0;
        }
        * + html .footer hr {
            height: 1px;
            border-top: 1px dashed #fff;
            background: transparent;
        }
        .footerCol {
            padding: 0 10px 20px;
        }
        @media (min-width: 750px) {
            .footerCol {
                float:left;
                width: 33.33%;
                padding: 0 20px 0 0;
            }
        }
        @media (min-width: 1024px) {
            .footerCol {
                padding: 0 50px 0 0;
            }
        }
            .mission {
                margin: 0;
            }
            @media (max-width: 1060px) {
                .footer {
                    padding-left: 10px;
                    padding-right: 10px;
                }
            }
            @media (max-width: 749px) {
                .footer {
                    padding-left: 0;
                    padding-right: 0;
                }
                .address {
                    margin: 0;
                }
            }
            .social {
                list-style:none;
                padding:0;
                margin:0;
                overflow:hidden;
            }
                .social li {
                    float:left;
                }
                    .social li a {
                        display:inline-block;
                        height:39px;
                        width:36px;
                        background-image:url(../webimages/social-icons-sprite_footer.png);
                        background-repeat:no-repeat;
                    }
                    .social .facebook {
                        background-position:0 0;
                    }
                    .social .twitter {
                        background-position:-36px 0;
                    }
                    .social .flickr {
                        background-position:-72px 0;
                    }
                    .social .youtube {
                        background-position:-107px 0;
                    }
                    .social .email {
                        background-position:-142px 0;
                    }
            @media (max-width: 749px) {
                .newsletterForm {
                    display: none;
                }
                .social {
                    text-align: center;
                }
                    .social li {
                        float: none;
                        display: inline;
                    }
            }
                .footer input[type="text"] {
                    display:block;
                    width:100%;
                    padding:2px 0;
                    margin:5px 0;
                    text-indent:15px;
                    border-radius:5px;
                    border:none;
                }
                .footer input[type="submit"],
                .footer button[type="submit"] {
                    float:right;
                }
            .lookingForMore {
                list-style:none;
                margin:0;
                padding:0;
                font-weight: bold;
            }
                .lookingForMore li a {
                    display:block;
                    padding:3px 0;
                    color:#fff;
                    text-decoration: none;
                }
                .lookingForMore li a:hover {
                    text-decoration: underline;
                }

        .subFooter {
            max-width: 1024px;
            padding: 10px 10px 50px;
        }
            @media (min-width: 750px) {
                .subFooter {
                    margin:30px auto 0;
                    padding:30px 10px 50px;
                    border-top:1px solid #fff;
                    overflow: hidden;
                }
            }
            .subFooter .footerCol {
                padding: 0 10px 10px;
            }
            .subFooter .footerCol:first-child {
                display: none;
            }
            @media (min-width: 750px) {
                .subFooter .footerCol {
                    float: left;
                }
                .subFooter .footerCol:first-child {
                    display: block;
                }
            }
            .subFooter .footerLinks {
                text-align: center;
            }
                .subFooter .footerLinks a {
                    text-decoration: none;
                }

                .subFooter .blueButton {
                        margin: 0 auto 5px;
                        width: 155px;
                        height: 30px;
                        background: #fff;
                        border: none;
                        border-radius: 5px;
                        text-transform: uppercase;
                        line-height: 30px;
                        font-size: 13px;
                        font-weight: 600;
                        color: #4298B5;
                    }
                        .subFooter .blueButton:hover {
                            background: #ddd;
                        }

                .subFooter .donate {
                    display: none;
                }
                @media (max-width: 1023px) {
                    .subFooter .donate {
                        display: block;
                    }
                    .subFooter .blueButton {
                        display: block;
                    }
                }
                .subFooter .footerLinks p {
                    margin: 15px 0 0;
                }
                    .subFooter .footerLinks p a,
                    .subFooter .footerLinks p a:hover {
                        padding: 0 5px;
                        color: #fff;
                        text-decoration: none;
                        font-weight: normal;
                        font-size: 9px;
                    }
                    @media (min-width: 750px) {
                        .subFooter .footerLinks p a,
                        .subFooter .footerLinks p a:hover {
                            text-decoration: underline;
                            font-size: 12px;
                        }
                    }

            .subFooter .copyright {
                margin: 0;
                text-align: center;
                font-size: 9px;
            }
            @media (min-width: 750px) {
                .subFooter .copyright {
                    margin: 10px 0 0 0;
                    font-size: 12px;
                }
            }

            .FooterBranchNav {
                display: none;
            }
            @media (max-width: 759px) {
                .FooterBranchNav {
                    display: block;
                    padding: 0;
                    list-style: none;
                    font-size: 12px;
                    line-height: 20px;
                    font-weight: 600;
                    text-transform: uppercase;
                    background: #fff;
                }
                .FooterBranchNav li {
                    border-bottom: 2px solid #4298B5;
                }
                .FooterBranchNav a {
                    display: block;
                    text-decoration: none;
                    border-style: solid;
                    border-width: 0 0 0 24px;
                    padding: 10px 5.3125%;
                }
            }


/* Arrow Controls & Bullet Controls - used on multiple templates */
@media (min-width: 751px) {
    .arrowControls .back, .arrowControls .next {
        float:left;
        height:16px;
        width:17px;
        background: #666666;
    }
        .arrowControls .back:after,  .arrowControls .next:after {
                display: inline-block;
                margin-bottom: 2px;
            }
            .arrowControls .back:hover, .arrowControls .next:hover {
            background: #4298B5;
        }
}
@media (max-width: 750px) {
    .arrowControls {
        float:none;
    }
        .arrowControls .back, .arrowControls .next {
            float: none;
            position: absolute;
            top: 50%;
            height:58px;
            width:32px;
        }
            .arrowControls .next {
                background: url(../webimages/BranchTeaser-leftArrow.png);
            }
            .arrowControls .back {
                right: 0;
                background: url(../webimages/BranchTeaser-rightArrow.png);
            }
            .arrowControls .back:after, .arrowControls .next:after {
                display: none;
            }
}

.arrowControls {
    float:left;
    clear: both;
}
    .arrowControls .back,
    .arrowControls .next {
        display:inline-block;
        padding: 0;
    }

    .arrowControls .back {
        border-radius: 5px 0 0 5px;
    }
        .arrowControls .back:after {
            content: "";
            margin-left: 5px;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            border-right: 7px solid #fff;
        }

    .arrowControls .next {
        border-radius: 0 5px 5px 0;
    }
        .arrowControls .next:after {
            content: "";
            margin-left: 5px;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            border-left: 7px solid #fff;
        }

    .arrowControls .aspNetDisabled {
        opacity: 0.4;
        filter: alpha(opacity=40);
    }

.bulletControls ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
    .bulletControls li {
        display: inline-block;
        float: left;
        height: 8px;
        width: 8px;
        margin: 0 3px 0 0;
        background: #5d5d5d;
        border-radius: 10px;
        cursor: pointer;
    }
    .bulletControls li.active,
    .bulletControls li:hover {
        background: #cccccc;
    }

.locationBar {
    background: none repeat scroll 0 0 #F2F2F1;
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    margin: 0 0 1.2em;
    overflow: hidden;
}
    .locationBar .locationHeader {
    background: url("../webimages/location-bar/arrow.png") no-repeat scroll right top transparent;
    color: #FFFFFF;
        display: inline-block;
    float: left;
    font-weight: bold;
        height: 35px;
        padding: 0 15px 0 5px;
    }
    .locationBar .locationList {
    list-style: none outside none;
        margin: 0;
        padding: 0 5px;
    }
         .locationBar .locationList li {
            float: left;
         }
         .locationBar .locationList a {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
         }
         .locationBar .locationList a:hover {
    color: #AE8003;
            font-weight: normal;
         }


/* Widget class */
.eduWidget,
.WidgetRotatingBanner {
    margin: 0 0 20px;
}



/* Captcha styles */
.captchacon {
    padding: 20px 0;
}
.captchacon .label,
.captchacon .textbox,
.captchacon .captchaImg {
    display: block;
}

.captchacon .textbox,
.captchacon .captchaImg {
    margin: 0 0 5px;
}



/* Ektron fixes */
div.PBColumn div.widget div.header {
  width:100% !important;
}
.EktronEditorsMenu li a:hover {
    font-weight:normal;
}

.contentWrap {
    padding: 20px;
}

div.PBViewing {
    float: none;
}

/* Call To Action Widget */
.CTA.Static,
.CTA.Static .buttons a,
.CTA.Fixed,
.CTA.Fixed .buttons  {
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.CTA {
    text-transform: uppercase;
    overflow: hidden;
    margin: 2px 0;
}

.CTA.Static {
    padding-bottom: 20px;
}

.CTA.Fixed {
    z-index: 500;
    position: fixed;
    display: block;
    margin: 0 auto;
    width: 1024px;
    bottom: 0;
    left: 0;
    right: 0;
}

    .CTA.Fixed .buttons {
        margin-bottom: 0;
    }

    .CTA .buttons {
            float: left;
        width: calc((100% - 6px) / 3);
        background-color: #033b5e;
        }

    .CTA .buttons .icon {
        width: 50px;
        height: 46px;
        background-position: center center;
        background-size: 50px 46px;
        background-repeat: no-repeat;
        }

        .CTA .buttons.applyOnline,
        .CTA .buttons.requestInfo {
            margin-right: 3px;
        }

        .CTA .buttons.applyOnline .icon {
            background-image: url("../webimages/Laptop.svg");
        }

        .CTA .buttons.requestInfo .icon {
            background-image: url("../webimages/talkbubble.svg");
        }

        .CTA .buttons.visitCampus .icon {
            background-image: url("../webimages/campus.svg");
        }

        .CTA .buttons a {
            display: block;
            height: 47px;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
        }

@media (max-width: 767px) {
    .CTA {
        margin: 2px -10px;
            }

    .CTA .buttons .text {
        display: block;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%); /* Mobile browsers */
        -ms-transform: translateY(-50%); /* IE9 */
        transform: translateY(-50%);
        padding: 0 5px;
        overflow: hidden;
            }
            }

    @media (max-width: 1023px) {

        .CTA.Fixed {
            position: fixed;
            margin: 0 auto;
            width: 100%;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .CTA.Fixed .buttons .icon {
        display: none;
    }
    }

@media (min-width: 768px) {
        .CTA {
        font-size: 17px;
    }

    .CTA .buttons {
        width: calc((100% - 34px) / 3);
        margin-bottom: 20px;
        padding: 10px;
        }

            .CTA .buttons.applyOnline {
        margin-right: 17px;
            }

            .CTA .buttons.requestInfo {
        margin-right: 17px;
    }

    .CTA .buttons a {
        height: 66px;
        padding: 0 10px;
        border: 1px solid #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 66px;
    }

    .CTA .buttons .icon {
        display: inline-block;
        vertical-align: top;
        margin: 8px 7px 0 0;
    }
            }

@media (min-width: 900px) {
    .CTA {
        font-size: 22px;
            }
            }

@media (min-width: 1024px) {
    .CTA.Fixed {
        display: none;
            }
    }





/* moved from forms.css */
@media (max-width: 750px) {
    .form {
        padding: 0 10px;

    }
}

@media (max-width: 780px) {
    .widget_contentBlock {
        padding: 10px;
    }
}

/* Faculty Detail and News Article */

/* Combined faculty-detail.css & news-detail.css */

.facultyDetailWrapper .imageRight {
    padding: 5px;
    border: 1px solid #ccc;
}
.facultyDetailNav p {
    text-align: right;
}
.facultyDetailNav .viewAll {
    padding-left: 10px;
}

.facultyDetailWrapper h1 {
    color: #666;
}


/*@media (max-width: 1024px) {
    .facultyDetailWrapper {
        padding-right: 10px;
    }
}

@media (max-width: 750px) {
    .facultyDetailWrapper {
        padding: 0 10px;
    }
}*/

@media (max-width: 450px) {
    /*.facultyDetailWrapper {
        padding: 0 10px;
    }*/
    .facultyDetailWrapper .imageRight {
        float: none;
        display: block;
        margin: 0 auto;
    }
}


.newsArticle {
    padding: 0 10px;
}
    .newsDetailWrapper h3 {
        color: #666;
    }
.back {
    float: right;
    padding: 15px 0 0 0;
}


/*@media (max-width: 749px) {
    .rightCol {
        margin-top: 10px;
    }
}*/