﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* CUSTOM SITE SPECIFIC CSS */
video {
    max-width: 100%
}

input.gsc-search-button-v2 {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input.gsc-input {
    font-size: 14px !important;
    Color: Black !important;
}

.content {
    background: #FAFAFA;
    padding-bottom: 30px;
}

#ucContentPage_pnlLeftWindowControls img,
#ucContentPage_pnlRightWindowControls img,
#ucContentPage_pnlControls img {
    max-width: 100%;
}

.ui-helper-reset {
    padding: 15px !important;
    margin: 0 !important;
}

@media screen and (max-width:991px) {

    /* Makes dual window full-width on mobile when left nav disappears */
    #ucContentPage_dualWindow {
        width: 100%;
    }

    #closings1_divAlertBanner,
    #closings1_divMinimizedBanner {
        margin-top: 20px;
    }
}

/* .card {border-bottom:0 !important;border-right:10px solid #EFEEEA;box-shadow:none !important;} */
/* END CUSTOM SITE SPECIFIC CSS */


/* ============================================================
   CSS Modern Refactor
   ============================================================
   This version uses CSS custom properties, consistent units,
   and modern styling techniques. The brand green colors are
   maintained, but the overall look has been refreshed with:
     - A new base font ("Inter")
     - Increased border radii
     - Subtle, consistent shadows
     - Cleaner, better-organized formatting
   ============================================================ */

/* Base Variables */
:root {
    --font-base: 'Inter', sans-serif;
    --font-alt: 'Arial', sans-serif;
    --base-font-size: 16px;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #272727;
    --color-primary-green: #0B674B;
    --color-secondary-green: #003b29;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --shadow-default: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* General Layout */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-base);
    font-size: var(--base-font-size);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

    a:hover {
        text-decoration: underline;
    }

    a img {
        border: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0;
}

/* Page Headers */
.PageTitleContainer {
    background: transparent;
}

h1.page_header {
    margin: 15px 0;
    font-size: 2.375em;
    color: var(--color-black);
}

/* Component Headers and Titles */
h2.component_header {
    color: var(--color-primary-green);
    font-size: 2em;
    margin-bottom: 5px;
    font-weight: 700;
}

h3.component_title {
    color: #3C3C3C;
    font-size: 1.675em;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Component Containers */
.component_container {
    margin: 10px 0;
}

    .component_container::after {
        content: "";
        display: table;
        clear: both;
    }

.component_container_inner {
    /* Optionally add padding or background here */
}

@media screen and (max-width: 640px) {
    .component_container_inner {
        text-align: center;
    }
}

/* Error Message */
.errormsg {
    font-weight: bold;
    color: red;
}

/* School Closings */
.schoolclosings_titletext {
    font-size: 1.286em;
    font-weight: 500;
    color: var(--color-white);
}

.schoolclosings_maintext {
    font-size: 1em;
    font-weight: normal;
    color: var(--color-white);
}

/* LOGIN FORMS */
.login_form {
    width: 50%;
}

    .login_form label {
        display: table;
        table-layout: fixed;
        width: 100%;
        margin-bottom: 5px;
    }

        .login_form label span {
            display: table-cell;
            text-align: right;
            padding-right: 5px;
        }

        .login_form label input {
            display: table-cell;
            width: 100%;
        }

    .login_form input[type="submit"] {
        width: 50%;
        float: right;
    }

/* END LOGIN FORMS */

/* FORMS */
.form-error {
    display: inline;
    color: Red;
    font-weight: normal;
}

label.no-bold {
    font-weight: normal !important;
}

textarea.form-control {
    resize: vertical;
}

.form-content {
    margin: 1em 0;
}

hr.form-separator {
    margin: 1em 0;
    height: 1px;
    background: #ddd;
    border: none;
}

/* END FORMS */

/* CAPTCHA */
.captcha_img {
    margin-bottom: 15px;
}

.captcha-text {
    font-size: 0.714em;
}

/* END CAPTCHA */
/* General Footer Styles */
footer {
    background: #1e1e1e;
    color: white;
    padding: 50px 0;
    width: 100%;
    font-size: 1em;
}

    /* Footer Headings */
    footer h1 {
        margin: 0;
        padding: 0;
        font-size: 2.1em;
        color: white;
        font-weight: 500;
        font-family: "poppins", Sans-Serif;
    }

    footer h2 {
        font-size: calc(19em / 16);
        color: white;
        font-weight: 500;
        font-family: "poppins", Sans-Serif;
        margin: 0;
        line-height: 29px;
        padding-right: 27px;
        letter-spacing: 0.25em;
    }

    /* School Name Section */
    footer .SchoolName {
        /* If you rely on Bootstrap columns, float isn't needed. */
        float: none;
        margin-bottom: 25px;
    }

    /* Additional text styles */
    footer .textwindow_text {
        line-height: 22px;
    }

/* Footer Buttons & Google Translate Button */
.WebAcc,
.footer_Button {
    text-transform: none !important;
    padding: 6px 20px;
    background: #0B674B;
    color: white;
    border: 1px solid #0B674B;
    transition: all 0.5s;
    margin-top: 10px;
    border-radius: 4px;
    font-size: calc(17em / 16);
    font-weight: 500;
}

/* If you need the Google Translate button on the left, keep float */
.WebAcc {
    float: left;
}

    /* Hover state */
    .WebAcc:hover,
    .footer_Button:hover {
        background: white;
        color: #333;
        text-decoration: none;
    }

/* Flexbox grid for the 6 footer buttons */
.footer-button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Space between buttons */
    justify-content: center;
    /* Center them horizontally */
    align-items: center;
    max-width: 500px !important;
    /* Adjust as needed */
    margin: 0 auto;
    /* Center the entire grid container */
}

    /* Each button: half width => 2 columns, 3 rows for 6 total */
    .footer-button-grid .footer_Button {
        flex: auto;
        box-sizing: border-box;
        text-align: center;
    }

/* ADA Compliance Button */
.divCompliance a {
    font-size: 1em;
    font-family: Sans-Serif;
    color: white;
}

/* SubFooter Styles */
.SubFooter {
    background: #141414;
    padding: 20px 0;
    color: white;
    font-size: 0.9em;
}

.OwnershipLabel {
    margin: 0;
}

/* Responsive Footer Adjustments */
@media screen and (max-width: 991px) {

    /* Example: If you had a footer_logo or other floats,
       ensure they don’t conflict with Bootstrap’s grid. */
    .footer_logo {
        width: 100%;
        margin: 0 auto;
        float: none;
        padding: 0;
        text-align: center;
    }

    /* Additional responsive tweaks as needed... */
    .footer_info {
        width: 100%;
        text-align: center;
    }

    .footer_list {
        width: 35%;
        padding-right: 0;
        display: none;
    }

    .footer_buttons {
        width: 100%;
    }

    .social_media_buttons {
        text-align: center;
    }

        .social_media_buttons img {
            width: 46px;
            display: inline;
            float: none;
            margin: 0 5px;
        }

    .SubFooterCell1,
    .SubFooterCell2,
    .SubFooterCell3 {
        width: 100%;
        text-align: center;
        float: none;
    }

    .OwnershipLabel,
    .esvLink {
        float: none;
    }
}

/* If you want the 6 buttons to become single-column on very narrow screens,
     add another media query below. For example: */
@media screen and (max-width: 600px) {
    .footer-button-grid .footer_Button {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* HOMEPAGE SLIDESHOW & Sticky Nav */
.hpDiv2 {
    padding: 20px 0;
}

.StickyNavContainer {
    position: relative;
    z-index: 20;
}

.StickyNav {
    position: absolute;
    top: 60px;
}

    .StickyNav a {
        float: left;
        clear: left;
        margin-bottom: 15px;
        background-color: #FAFAFA;
        border-radius: 100px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding: 15px;
        transition: padding 0.5s;
    }

        .StickyNav a:hover {
            padding-left: 50px;
            text-decoration: none;
        }

    .StickyNav .Icon {
        float: left;
        margin-right: 15px;
    }

        .StickyNav .Icon svg {
            color: #0B674B;
            font-size: 36px;
        }

    .StickyNav .Text {
        font-family: "poppins", Sans-Serif;
        font-weight: 500;
        font-size: 1.1em;
        line-height: 19px;
        color: #0B674B;
    }

    .StickyNav .SNCont {
        width: 150px;
    }

/* Slideshow Containers */
.slideshow_outer_container {
    width: 100%;
    margin-bottom: 0;
    max-height: 600px;
    overflow: hidden;
}

.slideshow_container {
    margin: 0 !important;
}

.slideshow_slide {
    position: relative;
}

.slideshow_caption_container_outer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    z-index: 2;
    display: block;
}

.slideshow_caption_container_inner {
    background: rgba(29, 29, 29, 0.85);
    max-width: 625px;
    position: relative;
    left: -50%;
    padding: 20px 30px;
    text-align: center;
}

.slideshow_caption_header {
    color: #fff;
    font-weight: bold;
    font-size: 2.571em;
    text-align: center;
    text-transform: uppercase;
    display: block;
}

.slideshow_caption_text {
    color: #fff;
    font-size: 1em;
    margin-bottom: 5px;
    display: block;
}

.slideshow_caption_link {
    color: #25a0ff;
    text-decoration: none;
    font-size: 0.929em;
    text-transform: uppercase;
}

.slideshow_image {
    width: 100%;
}

.slick-slide {
    height: auto;
}

.slick-dots {
    bottom: -60px;
    color: black;
}

    .slick-dots li button::before {
        font-size: 14px;
        color: #000;
        opacity: 1;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: white;
    }

    .slick-dots li.slick-active button::before {
        opacity: 1;
        color: #AC0604;
    }

.slick-prev {
    left: 0;
    z-index: 3;
}

.slick-next {
    right: 0;
    z-index: 3;
}

.slick-prev,
.slick-next {
    color: #8F8F8F !important;
}

    .slick-prev svg,
    .slick-next svg {
        width: 40px !important;
        height: 40px !important;
    }

.hpDiv2 .slick-prev svg,
.hpDiv2 .slick-next svg {
    border: 3px solid #8F8F8F;
    border-radius: 3px;
    transform: rotate(90deg);
}

#hpArrowContainer {
    float: right;
}

.hpDiv2 .slick-prev,
.hpDiv2 .slick-next {
    position: relative;
    float: left;
    margin-left: 5px;
    width: 40px;
    height: 40px;
    top: 20px;
}

.slick-prev:focus,
.slick-next:focus,
.slick-prev:hover,
.slick-next:hover,
.slick-prev:active,
.slick-next:active {
    color: #fff;
}

@media screen and (max-width:650px) {
    div[src*='filecabinet'] {
        width: 100% !important;
        height: auto !important;
    }
}

/* HOMEPAGE Styles */
.hpTitle {
    color: #333;
    font-size: 2em;
    font-weight: 500;
    font-family: "poppins", Sans-Serif;
}

.hpLink {
    color: #FFF;
    font-size: calc(17em / 16);
    font-family: "poppins", Sans-Serif;
    font-weight: 500;
    padding: 5.5px 35px;
    background-color: #0B674B;
    border-radius: 3px;
    border: 1px solid #0B674B;
    transition: all 0.5s;
    float: left;
}

    .hpLink:hover {
        background: white;
        color: #0B674B;
        text-decoration: none;
    }

.MVButton {
    background: #0B674B;
    color: white;
    padding: 5px 35px;
    border: 2px solid white;
    font-family: "poppins", Sans-Serif;
    font-weight: 500;
    font-size: calc(17em / 16);
    border-radius: 2px;
    text-decoration: none !important;
    transition: all 0.5s;
    float: left;
    margin-top: 50px;
}

    .MVButton:hover {
        background: white;
        color: #0B674B;
    }

/* Common background for homepage divisions */
.hpDiv1,
.hpDiv2 {
    background-color: #F6F6F6;
    padding: 20px 30px;
}

.MissionVision {
    background: url(../sysimages/fruit_and_veg.jpg) #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding: 50px 30px;
    position: relative;
    /* required for positioning the pseudo-element */
}

    .MissionVision::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 613px;
        margin-top: -50px;
        left: 0;
        background: radial-gradient(100% 357.93% at 0% 100%, rgb(0 119 6 / 31%) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(37, 4, 34, 0.95) 0%, rgba(55, 6, 50, 0.65) 31.25%, rgba(55, 6, 50, 0) 100%);
    }

    .MissionVision .textwindow_maintext {
        font-family: "poppins", Sans-Serif;
        font-weight: 400;
        font-size: 1.875em;
        color: white;
    }

    .MissionVision .textwindow_text {
        font-family: "poppins", Sans-Serif;
        color: white;
        font-size: 1.125em;
        font-weight: 500;
    }

    .MissionVision .Vision {
        margin-bottom: 50px;
        float: left;
    }

.Super {
    height: calc(100% + 100px);
    background: url(../sysimages/megangrippa.jpg) black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: -50px 0;
    position: absolute;
    right: 0;
}

    .Super::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        margin-top: 0px;
        left: 0;
        background: linear-gradient(90deg, rgba(0,0,0,.3)0%, rgba(0,0,0,0)30%);
    }

.SuperContainer {
    position: relative;
    height: 100%;
}

.SuperText {
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 100%;
    padding: 15px;
    padding-right: 0;
}

    .SuperText .Name {
        float: none;
        font-weight: 300;
        font-size: 1.222em;
        width: 100%;
        background: radial-gradient(100% 357.93% at 0% 100%, rgba(93, 192, 98, 0.6) 0%, rgba(93, 192, 98, 0.6) 60%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(37, 4, 34, 0.95) 0%, rgba(55, 6, 50, 0.65) 31.25%, rgba(55, 6, 50, 0) 100%);
        color: white;
        padding: 10px 15px;
        transition: background 0.5s;
    }

    .SuperText a {
        float: none;
        font-family: "poppins";
        font-weight: 500;
        text-decoration: none;
        text-transform: none;
        color: #fff;
        background: radial-gradient(100% 357.93% at 0% 100%, rgba(93, 192, 98, 0.6) 0%, rgba(93, 192, 98, 0.6) 65%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(37, 4, 34, 0.95) 0%, rgba(55, 6, 50, 0.65) 31.25%, rgba(55, 6, 50, 0) 100%);
        display: block;
        width: 100%;
        font-size: calc(17em / 16);
        line-height: 35px;
        padding: 3px 15px;
        border-top: 1px solid #111D;
        transition: all 0.5s;
    }

.news_slider .slick-slide {
    padding: 0 16px;
}

.HPNewsPhoto {
    float: left;
    width: 100%;
}

.hpDiv1 .HPNewsPhoto {
    height: 96px;
    display: table;
    margin-bottom: 14px;
}

.imgContainer {
    display: table-cell;
    vertical-align: middle;
}

.divTableCenterer {
    height: 96px;
    display: table-cell;
    width: 1px;
}

.hpDiv1 .HPnewscomponent_mainlink {
    /* Font-family removed */
    font-weight: 500;
    text-align: center;
    color: #000;
    font-size: 1.05em;
    text-decoration: none !important;
    transition: all 0.5s;
    display: inline-block;
    width: 100%;
}

    .hpDiv1 .HPnewscomponent_mainlink:hover {
        color: #0B674B;
    }

.HPnewscomponent_mainlink,
.HPnewscomponent_maintext,
.HPreadMoreLink {
    float: left;
    clear: left;
}

.HPnewscomponent_thumbimage {
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 1px 0 5px #333;
}

.hpDiv2 .HPnewscomponent_mainlink {
    /* Font-family removed */
    font-weight: 600;
    color: #333;
    font-size: 1.13em;
    line-height: 25px;
    text-decoration: none !important;
    transition: color 0.5s;
    max-height: 48px;
    overflow: hidden;
}

    .hpDiv2 .HPnewscomponent_mainlink:hover {
        color: #0B674B;
    }

.hpDiv2 .HPnewscomponent_maintext {
    /* Font-family removed */
    font-weight: 400;
    color: #252525;
    font-size: 0.98em;
    line-height: 23px;
    max-height: 48px;
    overflow: hidden;
}

.hpDiv2 .HPreadMoreLink {
    /* Font-family removed */
    font-weight: 600;
    color: #0B674B;
    font-size: 0.95em;
    line-height: 24px;
}

.hpDiv2 .HPNewsPhoto {
    float: left;
    width: 180px;
}

.ArticleBody {
    float: left;
    width: calc(100% - 275px);
    padding-left: 15px;
}

.NewsArticle {
    padding: 5px 0;
}

/* Responsive embed container for embed codes */
.embed-container {
    position: relative;
    padding-bottom: 57%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.eventCalendar_main_hasEvents {
    background-color: #C0C0C0;
}

.gallerycomponent_titletext {
    font-size: 1.1em;
    color: black;
    text-decoration: none;
}

.gallerygrouping_item {
    margin-left: 6px;
    margin-right: 9px;
    float: left;
    width: 132px;
    height: 148px;
}

.gallerycomponent_smalllink {
    font-size: 0.87em;
    color: #0000EE;
    text-decoration: none;
}

/* Modern Dynamic Navigation - Green Theme */
.DynamicNav {
    width: 100%;
    max-width: 280px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

    .DynamicNav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .DynamicNav ul li {
            margin: 0;
            padding: 0;
        }

            .DynamicNav ul li a {
                display: block;
                color: #333;
                font-weight: 600;
                padding: 12px 16px;
                text-decoration: none;
                transition: background-color 0.2s ease, color 0.2s ease;
                border-bottom: 1px solid #f0f0f0;
            }

                /* Regular hover - nice light green background */
                .DynamicNav ul li a:hover {
                    color: #188038;
                }

            /* Submenu styles */
            .DynamicNav ul li ul {
                padding-left: 0;
                background-color: #f9f9f9;
            }

                .DynamicNav ul li ul li a {
                    padding: 10px 20px;
                    font-size: 0.9rem;
                    color: #555;
                    border-bottom: 1px solid #e0e0e0;
                    background-color: #f9f9f9;
                }

                    .DynamicNav ul li ul li a:hover {
                        background-color: #e6f4ea;
                        color: #188038;
                    }

/* Active page styling - strong green background with white text */
.DynamicNav_currentpage {
    background-color: #e6f4ea;
}

.DynamicNav_currentpage_link {
    background-color: #34A853; /* Google green */
    color: #ffffff !important;
    font-weight: bold;
    border-bottom: none;
    transition: background-color 0.2s ease;
}

    /* Fix active link hover - lighter green with visible white text */
    .DynamicNav_currentpage_link:hover {
        background-color: #188038;
        color: #ffffff !important;
    }

/* Optional: subtle shadow on hover for the whole nav */
.DynamicNav:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


#show-menu {
    display: none;
}

    #show-menu:checked ~ #menu {
        display: block !important;
    }

.DynamicNav_show-menu:after {
    content: "Show Menu ▼";
}

#show-menu:checked ~ .DynamicNav_show-menu:after {
    content: "Hide Menu ▲";
}

.DynamicNav_show-menu {
    color: #fff;
    background: #101010;
    border-top: 3px solid #101010;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
    display: none;
    font-weight: bold;
    font-size: 1.429em;
    line-height: 1;
    cursor: pointer;
}

@media screen and (max-width: 991px) {


    .MissionVision {
        background: url(../sysimages/fruit_and_veg.jpg) #000;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top left;
        padding: 50px 30px;
    }

        .MissionVision::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            margin-top: 0px;
            left: 0;
            background: transparent;
        }

        .MissionVision .textwindow_maintext {
            font-family: "poppins", Sans-Serif;
            font-weight: 400;
            font-size: 18px;
            color: White;
            background: #333;
            padding: 10px;
            display: block;
        }

        .MissionVision .textwindow_text {
            font-family: "poppins", Sans-Serif;
            color: White;
            font-size: 1.125em;
            font-weight: 500;
            background: #333;
            padding: 10px;
            display: block;
        }

        .MissionVision .Vision {
            margin-bottom: 0;
            float: left;
        }


    .DynamicNav {
        margin-bottom: 20px;
    }

    .DynamicNav_show-menu {
        display: block;
    }

    #menu {
        display: none;
    }
}

@media screen and (min-width:991px) {
    .DynamicNav > ul > li:first-child a {
        background: #0B674B;
        color: White;
        border-bottom: 1px solid #0B674B;
    }
}

/* END DYNAMIC NAV */

/* LINKS AND DOWNLOADS COMPONENTS */
.linksList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.liLinkTitle {
    display: block;
    margin-top: 0;
}

.linksList a {
    display: block;
}

.liLinkDesc {
    font-size: 11px;
}

.linksList li a {
    text-decoration: none;
}

    .linksList li a:hover {
        text-decoration: underline;
    }

/* END LINKS AND DOWNLOADS COMPONENTS */

/* NEWS COMPONENT */
.newscomponent_item {
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #ededed;
    width: 100%;
}

    .newscomponent_item:last-child {
        border-bottom: none;
    }

.newscomponent_imagecontainer {
    vertical-align: top;
    padding-right: 20px;
    text-align: left;
    vertical-align: middle;
    line-height: 1;
    float: left;
}

    .newscomponent_imagecontainer img {
        width: 100%;
        max-width: 400px !important;
        margin-bottom: 8px;
    }

.newscomponent_archivelink {
    float: right;
}

.newscomponent_textcontainer {
    vertical-align: middle;
}

    .newscomponent_textcontainer span {
        display: block;
        font-size: 1.071em;
    }

.newscomponent_item h3,
.newscomponent_item h3 a {
    margin-top: 0;
}

.newscomponent_readmore,
.newscomponent_readmore:hover {
    font-size: 0.857em;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    float: right;
    margin-top: 20px;
}

.ArticleImage {
    padding-left: 0;
    padding-right: 8px;
    text-align: left;
    float: left;
}

@media screen and (max-width:670px) {
    .newscomponent_imagecontainer {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .newscomponent_item {
        text-align: left;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:400px) {
    .newscomponent_item {
        display: block;
    }

    .newscomponent_imagecontainer {
        display: block;
        padding: 0 0 12px;
    }

        .newscomponent_imagecontainer img {
            margin: 0 auto;
            display: block;
            width: 100%;
        }

    .newscomponent_textcontainer {
        display: block;
    }
}

/* END NEWS COMPONENT */

/* VIDEO COMPONENT */
video {
    max-width: 100%;
}

.embed_container h3 {
    cursor: pointer;
    font-size: 0.857em;
    color: #313131;
    text-decoration: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

.embed_container div {
    height: 0;
    overflow: hidden;
    position: relative;
}

    .embed_container div dt {
        padding: 5px;
        margin-bottom: 5px;
        border: 1px solid #313131;
    }

.embed_container dt {
    font-size: 0.714em;
    color: #0041B5;
    text-decoration: none;
}

.video-js.vjs-fluid {
    clear: both;
}

/* END VIDEO COMPONENT */

.fotorama__caption span,
.fotorama__caption,
.fotorama__caption__wrap {
    background-color: #101010 !important;
    color: White;
    text-decoration: none;
    font-weight: normal !important;
}

.gallerycomponent_maintext {
    font-size: 0.929em;
    color: Black;
    text-decoration: none;
}

.gallerycomponent_smalltext {
    font-size: 0.857em;
    color: black;
    text-decoration: none;
}

.survey_maintext {
    font-size: 1em;
    color: Black;
    font-weight: bold;
}

.survey_smalltext {
    font-size: 0.929em;
}

    .survey_smalltext a {
        font-size: 0.857em;
        color: #3e699e;
        text-decoration: none;
    }

        .survey_smalltext a:hover {
            text-decoration: underline;
        }

.survey_questiontext {
    font-size: 1em;
    color: Black;
}

.survey_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.survey_spacer {
    height: 4px;
}

.survey_divider {
    height: 1px;
    background-color: Black;
}

.survey_background {
    background-color: gainsboro;
}

.survey_errormsg {
    font-weight: bold;
    font-size: 0.929em;
    color: red;
    text-decoration: none;
}

/* EMPLOYEMENT COMPONENT */
.employmentBG_item {
    margin-top: 15px;
}

.employment_titletext {
    font-size: 1.214em;
    color: #666666;
    font-weight: bold;
}

.employment_maintext {
    font-size: 1.143em;
    color: Black;
    font-weight: bold;
    text-decoration: underline;
}

.employment_smalltext {
    font-size: 0.929em;
    color: #333333;
}

.employment_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.employmentBG_itemsep {
    height: 1px;
    background-color: #ffffff;
}

.employmentBG_groupsep {
    height: 1px;
    margin: 4px 0 4px 0;
    background-color: #c4c4c4;
}

.employment_bar {
    height: 1px;
    background-color: #313131;
}

/* END EMPLOYMENT COMPONENT */

.staffdirectory_gridtext {
    font-size: 0.786em;
    color: Black;
    font-weight: normal;
}

.staffdirectory_gridtitle {
    font-size: 0.857em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_gridlink {
    font-size: 0.786em;
    color: #001430;
    text-decoration: none;
}

.staffdirectory_header {
    font-size: 1.357em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_maintext {
    font-size: 0.929em;
    color: Black;
    font-weight: bold;
}

.staffdirectory_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.staffdirectory_smalltext {
    font-size: 0.857em;
    color: #333333;
}

.staffdirectory_smalltext_bold {
    font-size: 0.929em;
    color: #222222;
    font-weight: bold;
}

.staffdirectory_tinytext {
    font-size: 0.857em;
    color: Black;
}

.staffdirectory_altBG {
    background-color: #E7E7E7;
}

.staffdirectory_vertsep {
    background-color: Gainsboro;
}

.adminmessage_image {
    padding-left: 0;
    padding-right: 10px;
    text-align: left;
}

.podcast_titletext {
    font-size: 1.143em;
    font-weight: bold;
    color: Black;
}

.podcast_maintext {
    font-size: 0.929em;
    font-weight: normal;
    color: #333333;
}

.podcast_smalltext {
    font-size: 0.857em;
    color: Black;
}

.podcast_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.podcast_altBG {
    background-color: #dfebf7;
}

.blog_maintext {
    font-size: 1.071em;
    color: Black;
}

.blog_mainlink {
    font-size: 0.929em;
    color: Blue;
    text-decoration: none;
}

.blog_smalltext {
    font-size: 0.714em;
    color: Black;
}

.blog_smalllink {
    font-size: 0.714em;
    color: Blue;
    text-decoration: none;
}

.blog_titletext {
    font-size: 1.5em;
    color: Black;
    font-weight: normal;
}

.blog_posttitle {
    font-size: 1.143em;
    color: #222222;
    font-weight: bold;
}

.blog_sideBG {
    background-color: #dfebf7;
}

/* MASTER CALENDAR */
.mastercalendar_monthly_header {
    text-align: center;
    background: #efefef;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.mastercalendar_note {
    margin-bottom: 10px;
}

.mastercalendar_filtercontainer {
    margin: 0 0 10px;
}

.mastercalendar_filterbar {
    padding: 10px 15px;
    background: #efefef;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.mastercalendar_filterpanel {
    padding: 10px 15px;
    background: #efefef;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.mastercalendar_dailyitem {
    padding: 10px;
}

    .mastercalendar_dailyitem:nth-child(odd) {
        background: #dedede;
    }

.mastercalendar_week_daycontainer {
    padding: 5px;
    margin: 0 0 5px;
    background: #dedede;
}

    .mastercalendar_week_daycontainer h3 {
        text-align: center;
        padding: 5px 0;
        margin: 0;
        font-weight: normal;
    }

.mastercalendar_week_eventcontainer {
    padding: 10px;
    background: #fafafa;
    margin: 5px 0 0;
}

    .mastercalendar_week_eventcontainer h4 {
    }

.mastercalendar_month_calendar {
    table-layout: fixed;
    border-collapse: collapse;
    min-width: 100%;
}

    .mastercalendar_month_calendar th {
        padding: 5px;
        border: 1px solid #dddddd;
        vertical-align: top;
        height: 30px;
        width: 14%;
    }

    .mastercalendar_month_calendar td {
        padding: 5px;
        border: 1px solid #dddddd;
        vertical-align: top;
        height: 100px;
        width: 14%;
    }

.mastercalendar_month_daynum {
    display: block;
    text-align: right;
    margin: 0 0 5px;
    line-height: 1;
    font-weight: bold;
}

.mastercalendar_month_dayitem {
    font-size: 0.857em;
    margin: 0 0 10px;
}

.mastercalendar_month_greyedday {
    background: #efefef;
}

.mastercalendar_rssfeed {
    width: 100%;
    padding: 5px 0 0;
    text-align: center;
    background: white;
    max-width: 300px;
    margin: 0 auto 10px;
    border-radius: 5px;
    display: block;
}

/* END MASTER CALENDAR */

/* LOGIN FORMS */
.login_form {
    width: 50%;
}

    .login_form label {
        display: table;
        table-layout: fixed;
        width: 100%;
        margin-bottom: 5px;
    }

        .login_form label span {
            display: table-cell;
            text-align: right;
            padding-right: 5px;
        }

        .login_form label input {
            display: table-cell;
            width: 100%;
        }

    .login_form input[type="submit"] {
        width: 50%;
        float: right;
    }

/* END LOGIN FORMS */

/* TEXT WINDOW */
.imagealign_left {
    float: left;
    padding: 0 1em 5px 0;
}

.imagealign_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.imagealign_right {
    float: right;
    padding: 0 0 5px 1em;
}

/* END TEXT WINDOW */

/* EVENTS COMPONENT */
.eventcomponent_item {
    padding: 13px 0;
    display: table;
    border-bottom: 1px solid #ededed;
    width: 100%;
    margin: 0 !important;
}

    .eventcomponent_item:first-child {
        padding-top: 20px;
    }

    .eventcomponent_item:last-child {
        border-bottom: none;
    }

.eventcomponent_leftcontainer {
    display: table-cell;
    vertical-align: middle;
    width: 83px;
}

.eventcomponent_datecontainer {
    float: left;
    text-align: center;
    background: #0B674B;
    padding: 0px;
    line-height: 1;
    font-weight: 400;
    font-size: 1.5em;
    font-family: "poppins", Sans-Serif;
    width: 70px;
    height: 70px;
    border: 1px solid #0B674B;
}

.eventcomponent_datecontainer_bottom {
    background-color: White;
    width: 68px;
    height: 34px;
    color: #0B674B;
}

.eventcomponent_month {
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 34px;
}

.event_article {
    float: left;
    width: calc(100% - 70px);
    padding-left: 15px;
}

.eventcomponent_date {
    line-height: 33px;
}

.eventcomponent_textcontainer {
    display: table-cell;
    vertical-align: middle;
}

    .eventcomponent_textcontainer h3 {
        font-size: 1em;
        margin-top: 0;
        margin-bottom: 5px;
    }

.EventCarousel {
    padding: 19px 0;
}

.eventcomponent_linktext {
    color: #333;
    font-weight: 600;
    line-height: 24px;
    font-size: 1.125em;
    max-height: 24px;
    overflow: hidden;
}

.eventcomponent_maintext {
    color: #252525;
    line-height: 30px;
    max-height: 30px;
    overflow: hidden;
    font-size: 1em;
}

.eventcomponent_datetext {
    font-family: "poppins", Sans-Serif;
    color: #252525;
    font-size: 1em;
    line-height: 24px;
    max-height: 24px;
    overflow: hidden;
}

.eventcomponent_viewall {
    font-size: 0.929em;
    text-align: center;
    color: #25a0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold
}

.eventCalendar,
.weeklyEventCalendar {
    width: 100%;
    font-size: 1em;
    font-family: 'Proxima-Nova', Sans-Serif;
    border: none !important;
    border-radius: 2px;
    background: #fafafa;
    box-sizing: border-box;
    margin-left: -18px;
    margin: 0 auto;
}

    .eventCalendar th,
    .eventCalendar td {
        border: none;
        background: none;
    }

.eventCalendar_todayDayStyle {
    background: none !important;
}

.eventCalendar th
/* Day Header Style */ {
    padding: 10px 0;
    color: #101010;
    background: none;
    font-weight: bold;
    font-size: 1em;
}

.eventCalendar a {
    text-decoration: none !important;
}

.eventCalendar_titleStyle
/* Month and Year Style */ {
    background-color: #0B674B;
    color: #fff;
    border: none;
    font-size: 1.242em;
    font-weight: bold;
    text-transform: uppercase;
}

    .eventCalendar_titleStyle td {
        padding: 10px 0;
    }

.eventCalendar_nextPrevStyle a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.12em;
    text-align: center;
    padding: 0 25px;
    margin-top: -2px;
}

.eventCalendar_dayStyle a,
.eventCalendar_todayDayStyle a,
.eventCalendar_otherMonthDayStyle a {
    width: 26px;
    height: 26px;
    line-height: 24px;
    padding: 0;
    margin: 0;
    text-align: center;
    display: block;
}

.eventCalendar_otherMonthDayStyle a {
    display: none;
}

.eventCalendar_dayStyle a {
    background-color: none;
    color: inherit !important;
}

.eventCalendar_todayDayStyle a {
    color: #fff !important;
    font-weight: bold;
    background-color: #000;
}

.eventCalendar_otherMonthDayStyle a
/* Other Month is hidden on this site */ {
    background: transparent !important;
    color: transparent !important;
    padding: 0;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.eventCalendar_dayStyle:hover a,
.eventCalendar_otherMonthDayStyle:hover a,
.eventCalendar_todayDayStyle:hover a {
    background-color: #0B674B;
    /* Hover Color */
    color: #fff !important;
}

.eventCalendar_dayStyle,
.eventCalendar_todayDayStyle {
    padding: 5px 0;
}

.eventCalendar tr:not(:first-child) td:first-child,
.eventCalendar th td:first-child {
    padding-left: 10px;
}

.eventCalendar tr:not(:first-child) td:last-child,
.eventCalendar th td:last-child {
    padding-right: 10px;
}

.eventCalendar tr:last-child td {
    padding-bottom: 10px;
}

.eventCalendarWeekly_otherMonthDayStyle {
    padding: 5px 0;
    background: #ddd !important;
}

    .eventCalendarWeekly_otherMonthDayStyle a {
        width: 24px;
        height: 24px;
        line-height: 24px;
        padding: 0 !important;
        margin: 0;
    }

@media screen and (max-width:640px) {
}

/* END EVENTS COMPONENT */

.configs {
    font-weight: bold;
    font-size: 1.286em;
}

.cblAreas {
    font-weight: normal;
    font-size: 0.714em;
    color: #333333;
}

    .cblAreas tr td {
        width: 33%;
    }

/* Archive News */
.ddl_buildings {
    width: 210px;
}

.filterTitle {
    font-weight: bold;
    font-size: 0.929em;
    color: #333333;
    padding: 10px 0 5px 0;
}

.filterContainer {
    width: 225px;
    float: left;
    background-color:;
    padding: 10px 10px 30px 10px;
    margin: 0 15px 10px 0;
    border-right: solid 1px #333;
}

.ArticleArchive_searchButton {
    width: 90%;
    display: block;
    border: 1px solid #333;
    border-radius: 4px;
    color: #333;
    font-size: 1.12em;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: #eee;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    margin: 10px;
}

.pagingMenu {
    padding: 5px 5px 10px 5px;
    font-size: 1em;
    font-weight: bold;
    border-bottom: solid 1px #333;
    margin-bottom: 10px;
    overflow: hidden;
}

.monthDiv {
    margin: 5px 5px 15px 5px;
    padding: 5px;
    background-color: #f3f3f3;
    display: none;
    font-size: 0.857em;
    border: solid 1px black;
}

.altNewsItem {
    background-color: #f3f3f3;
}

.monthTitle {
    margin: 5px;
    padding: 5px;
    font-weight: bold;
}

/* End Archive News */
.login_input {
    width: 270px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    border-radius: 4px;
    padding: 10px 20px;
    display: block;
}

.login_button {
    width: 270px;
    display: block;
    border: 0px;
    border-radius: 4px;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: #0B674B;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 10px;
}

/*Intranet Login*/

/*End Intranet Login*/

/* TEXT WINDOW */

/* Text Window Dropdown */
.textWindow {
    display: block;
}

.ui-accordion .ui-accordion-icons {
    border-radius: 0 !important;
}

.ui-widget-content a {
    color: #2877FA !important
}

.ui-widget-content {
    color: #666666 !important;
    line-height: 22px !important;
}

.ui-accordion h4.ui-accordion-header {
    margin: 0;
    background: #F3F3F3;
    color: Black;
    font-weight: normal;
    padding: 15px 40px;
}

/* Text Window Dropdown */
.bullet {
    list-style: none;
}

.DynamicNav ul li ul li {
    list-style-type: none;
}

ul.bullet li > figure {
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 17px;
    font-weight: 700;
    height: 45px;
    margin: -5px 10px 0 0;
    padding: 8px 0 8px 0;
    text-align: center;
    width: 45px;
    background: #231f20;
}

.imagealign_left {
    float: left;
    margin: 0 1em 1px 0;
    border: 1px solid black;
}

.imagealign_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.imagealign_right {
    float: right;
    padding: 0 0 5px 1em;
}

/* END TEXT WINDOW */

/* LIGHTBOX */
.wrap {
    overflow: hidden;
    margin: 10px;
}

.box {
    float: left;
    position: relative;
    width: 20%;
    padding-bottom: 20%;
}

.boxInner {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    overflow: hidden;
}

    .boxInner img {
        width: 100%;
    }

    .boxInner .titleBox {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-bottom: -200px;
        background: #000;
        background: rgba(0, 0, 0, 0.5);
        color: #FFF;
        padding: 10px;
        text-align: center;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

body .boxInner:hover .titleBox,
body.touch .boxInner.touchFocus .titleBox {
    margin-bottom: 0;
}

@media only screen and (max-width : 480px) {

    /* Smartphone view: 1 tile */
    .box {
        width: 100%;
        padding-bottom: 100%;
    }
}

@media only screen and (max-width : 650px) and (min-width : 481px) {

    /* Tablet view: 2 tiles */
    .box {
        width: 50%;
        padding-bottom: 50%;
    }
}

@media only screen and (max-width : 1050px) and (min-width : 651px) {

    /* Small desktop / ipad view: 3 tiles */
    .box {
        width: 33.3%;
        padding-bottom: 33.3%;
    }
}

@media only screen and (max-width : 1290px) and (min-width : 1051px) {

    /* Medium desktop: 4 tiles */
    .box {
        width: 25%;
        padding-bottom: 25%;
    }
}

/* END LIGHTBOX */


/*Public User Dashboard */
.DashboardNav {
    width: 100%;
    border: 1px solid #C1C1C1;
    padding: 11px;
    margin-bottom: 5px;
}

/* end dashboard */

/* Hover Styles Start*/

.CssGrow {
    transition: transform 0.5s;
}

    .CssGrow:hover {
        transform: scale(1.15);
    }

.CssShrink {
    transition: transform 0.5s;
}

    .CssShrink:hover {
        transform: scale(0.85);
    }

.CssSkew {
    transition: transform 0.5s;
}

    .CssSkew:hover {
        transform: skew(-10deg);
    }

.CssSkewForward {
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}

    .CssSkewForward:hover {
        transform: skew(-10deg) perspective(1px) translateZ(0);
    }

.CssSkewBackward {
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}

    .CssSkewBackward:hover {
        transform: skew(-10deg) perspective(1px) translateZ(0);
    }

.CssFloat {
    transition: transform 0.5s;
}

    .CssFloat:hover {
        transform: translateY(-8px);
    }

.CssSink {
    transition: transform 0.5s;
}

    .CssSink:hover {
        transform: translateY(8px);
    }

.CssForward {
    transition: transform 0.5s;
}

    .CssForward:hover {
        transform: translateX(8px);
    }

.CssBackward {
    transition: transform 0.5s;
}

    .CssBackward:hover {
        transform: translateX(-8px);
    }

.CssPop:hover {
    -webkit-animation-name: CssPop;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-direction: alternate;
    animation-name: CssPop;
    animation-duration: 0.5s;
    animation-direction: alternate;
}

@-webkit-keyframes CssPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Standard syntax */
@keyframes CssPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.CssPush:hover {
    -webkit-animation-name: CssPush;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-direction: alternate;
    animation-name: CssPush;
    animation-duration: 0.5s;
    animation-direction: alternate;
}

@-webkit-keyframes CssPush {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}

/* Standard syntax */
@keyframes CssPush {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}

.CssPulse:hover {
    -webkit-animation-name: CssPulse;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.75s;
    /* Safari 4.0 - 8.0 */
    webkit-animation-iteration-count: 500;
    -webkit-animation-timing-function: linear;
    animation-name: CssPulse;
    animation-duration: 0.75s;
    animation-iteration-count: 500;
    animation-timing-function: linear;
}

@-webkit-keyframes CssPulse {
    25% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.9);
    }
}

/* Standard syntax */
@keyframes CssPulse {
    25% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.9);
    }
}

.hiddenBreak {
    display: none;
}

@media only screen and (max-width: 991px) {
    .Super {
        margin: 50px 80px 0px !important;
        width: calc(100% - 160px);
        height: 500px !important;
        position: relative;
    }

    .MV,
    .Super {
        float: left;
    }

    .MV {
        width: 100%;
    }

    footer .col-md-4 {
        float: left;
        text-align: center;
        width: 100%;
        padding-bottom: 15px;
    }

    footer .SchoolName,
    .footertext,
    .WebAcc {
        display: inline-block;
        float: none;
        margin-bottom: 0;
        margin-top: 0;
        text-align: center;
    }

    footer .col-md-8,
    header .col-md-6 {
        float: left;
        width: 100%;
    }

    .hiddenBreak {
        display: block;
    }

    .HeaderButton.col-sm-hidden {
        display: none !important;
    }

    header .quicklinks {
        padding-top: 15px;
        text-align: center;
    }

    .SchoolTitle {
        display: inline-block;
        float: none;
    }

    header {
        text-align: center;
    }
}

@media only screen and (max-width: 616px) {
    .SchoolTitle {
        font-size: 13px;
    }

    header h2 {
        padding-right: 1.59em;
    }
}

@media only screen and (max-width: 434px) {
    .SchoolTitle {
        font-size: 11px;
    }
}

@media only screen and (max-width: 404px) {
    .SchoolTitle {
        font-size: 9px;
    }
}

@media only screen and (max-width: 394px) {
    .SchoolName {
        font-size: 13px;
    }

        .SchoolName h2 {
            padding-right: 1.59em;
        }
}

@media only screen and (max-width: 330px) {
    .SchoolName {
        font-size: 11px;
    }
}

@media only screen and (max-width: 342px) {
    .SchoolTitle {
        font-size: 7px;
    }
}

@media only screen and (max-width: 674px) {
    .Super {
        margin: 50px 40px 0px !important;
        width: calc(100% - 80px);
        height: 500px !important;
        position: relative;
    }
}

@media only screen and (max-width: 520px) {
    .Super {
        margin: 50px 0px 0px !important;
        width: calc(100% - 0px);
        height: 500px !important;
        position: relative;
    }
}

@media only screen and (max-width: 431px) {
    .Super {
        margin: 50px -45px -50px !important;
        width: calc(100% + 90px);
        height: 500px !important;
        position: relative;
    }
}

@media screen and (max-width: 344px) {
    .SuperText a {
        font-size: 0.875em;
    }
}

.hpDiv2 .HPNewsPhoto {
    height: 145px;
}

    .hpDiv2 .HPNewsPhoto img {
        width: 100%;
        border-radius: 20px;
    }

@media screen and (max-width: 540px) {
    .hpDiv2 .HPNewsPhoto {
        float: none;
        margin: auto;
        width: 100%;
        height: auto;
        padding-bottom: 15px;
    }

        .hpDiv2 .HPNewsPhoto img {
            width: auto;
            margin: auto;
        }

    .ArticleBody {
        width: 100%;
        padding-left: 0;
        float: none;
    }
}

@media screen and (max-width: 346px) {
    #hpArrowContainer {
        float: left;
        margin-top: 15px;
        clear: left;
    }

        #hpArrowContainer button:first-child {
            margin-left: 0;
        }
}

.hpDiv1 .slick-arrow {
    width: 50px;
    margin: 0 -25px;
}

.SearchArea {
    width: 100%;
    background: #0B674B;
    margin-top: -60px;
    padding: 10px 0;
    transition: all 0.5s;
}

    .SearchArea.Open {
        margin-top: 0px;
    }


[style="background-color:Silver;"] {
    padding: 0;
}


@media screen and (max-width: 1074px) {
    .HeaderButton {
        width: 180px;
    }
}

@media screen and (max-width: 1026px) {
    .HeaderButton {
        width: 170px;
    }
}

@media screen and (max-width: 991px) {
    .HeaderButton {
        width: 190px;
    }

    body[class] header h2,
    body[class] header h1 {
        text-align: center !important;
    }
}

@media screen and (max-width: 1300px) {
    .StickyNav {
        top: 30px;
    }
        .StickyNav .Text {
            font-size: 12px;
        }
}

@media screen and (max-width: 1100px) {
    .StickyNav {
        top: 10px;
    }


}

@media screen and (max-width: 1036px) {
    .StickyNav a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 769px) {
    .StickyNavContainer {
        display: none;
    }
}

@media screen and (max-width: 991px) {

    .GoogleTranslate,
    header .quicklinks {
        display: none !important;
    }
}

.Safari .slick-arrows {
    display: none !important;
}

#sthoverbuttons #sthoverbuttonsMain {
    padding: 0px !important;
}

#sthoverbuttons .sthoverbuttons-label {
    margin-left: -4px !important;
}

.sthoverbuttons-chicklets {
    margin-left: -8px !important;
}

#closings1_divAlertBanner,
#closings1_divMinimizedBanner {
    position: relative;
    z-index: 2;
    background: black;
}

.divAlertBannerText {
    color: #fff !important;
}

.goog-te-gadget {
    color: inherit !important;
}

.goog-te-gadget-simple {
    background: #0000 !important;
    border: none !important;
    font-size: 19.125px !important;
    display: inline-block;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    color: inherit;
    font-weight: 500;
    font-family: "poppins", Sans-Serif;
}
