﻿/* GENERAL LAYOUT */
*
{
    box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html, body, .body_form
{
    padding:0;
    margin:0;
    min-height:100%;
}
body
{
    line-height:1.3;
    color:#272727;
    font-size:16px;
    font-family: proxima-nova, sans-serif;
}
.content_container
{
    padding:60px 0 30px;
}
.container-fluid
{
    max-width:1280px;
    margin:0 auto;
}
.flex-container
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.flex-container::before,
.flex-container::after
{
    display:none;
}
.flex-align-center
{
    align-items:center;
}

a{text-decoration:none;cursor:pointer; color:#006FC4;}
a:hover {text-decoration: underline;}
a img {border:none;}

img{max-width:100%;}

h1, h2, h3, h4, h5, h6{line-height:1;}

/* Use this for page headers */
.page_header_container
{
}
h1.page_header
{
    padding:10px 0;
    border-bottom:5px solid #21407A;
    font-weight:bold;
    margin:0;
    font-size: 2.5em;
    text-transform:uppercase;
}

.singlewindow,
.dualwindow_outer
{
    padding:30px 15px;
}



/* Use this for titles inside of components */
/* Ex: Textwindow titles */
h2.component_title
{
    margin:0 0 15px;
}
h2.component_header
{
    border-bottom:1px solid #272727;
    padding-bottom:10px;
}

/* Container that surrounds every component */
/* Note: Also contains component headers */
.component_container
{
    margin:0 0 30px;
}
.component_container:after,
.component_container:before
{
    content:"";
    display:table;
    clear:both;
}

.collapsible h2.component_header
{
    border:none;
    background:#214174;
    color:#fff;
    cursor:pointer;
    padding:10px 15px;
    margin:0;
    font-size:1.75em;
    display:flex;
    justify-content:space-between;
    align-items:center;
    line-height:1;
    font-weight:normal;
    margin-top:12px;
    margin-left:2px;
    margin-right:2px;
}
.collapsible h2.component_header svg
{
    transition:transform .2s ease;
}
.collapsible h2.component_header.ui-accordion-header-active svg
{
    transform:rotate(90deg);
}
.collapsible h2.component_header:focus,
.collapsible h2.component_header:active
{
    outline:none;
}
.ui-accordion-content
{
    padding:10px 15px;
    background:#efefef;
}

/* Error message used for things such as forms */
.errormsg
{
    font-weight: bold;
    color: Red;
}
/* END GENERAL LAYOUT */

/* SCHOOL CLOSINGS */
.schoolclosings_titletext
{
	font-size: 1.286em;
	font-weight: 500;
	color: #fff;
}
.schoolclosings_maintext
{
	font-size: 1em;
	font-weight: normal;
	color: #fff;	
}
/* END SCHOOL CLOSINGS */

/* Liquid HEADER */
.LiquidButton
{
    cursor:pointer;
    position:absolute;
    bottom:15px;
    right:15px;
    opacity:.7;
    font-size:29px;
    line-height:1;
    color:#fff;
}
.LiquidButton svg
{
    transition:transform .2s ease;
}
.LiquidButton_Open svg
{
    transform:rotate(180deg);
}
body.liquidopen
{
    padding-top:51px;
}
body.animateliquid
{
    transition:padding .3s ease;
}
.LiquidHeader
{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index:99;
    transform:translateY(-100%);
    transition:transform 0.3s ease;
}
.LiquidHeader.Open
{
    transform:translateY(0%);
}
.LiquidHeader nav
{
    padding:0 20px;
    z-index:99;
}
.navbar-inverse .navbar-toggle
{
    margin-right: 0 !important;
}
.LiquidHeader .navbar-header
{
    display: none;
}
.LiquidHeader .navbar-collapse
{
    display: block;
    box-shadow: none;
    border: none;
}
/* END LIQUID HEADER */

/* TOP NAV */
nav.topnav_nav
{
    padding:0;
    margin:0;
    width:100%;
    background:transparent;
}
.mobile_search_container
{
    background-color:#fff;
    height:40px;
    position:relative;
    margin:0 0 15px;
}
ul.nav_groups
{
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    width:100%;
    list-style-type:none;
    padding:0;
    margin:0;
    color:#272727;
}
li.nav_group
{
    position:relative;
    padding:0;
    margin:0;
}
li.nav_group > a
{
    display:flex;
    flex-wrap:wrap;
    padding:0 15px;
    height:45px;
    line-height:1;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    text-transform:uppercase;
    color:#fff;
    font-size:1em;
    border-radius:4px;
}
li.nav_group > a.nav_group_has_children
{
    border-radius:4px 4px 0 0;
}
li.nav_group > a.nav_group_has_children svg,
li.nav_group > a.nav_group_has_children i
{
    display:inline-block;
    width:14px;
    margin-left:.25em;
}
li.nav_group:hover > a
{
    text-decoration:none;
    background:#db0825;
    color:#fff;
}
ul.nav_subgroup
{
    display:none;
    flex-direction:row;
    list-style-type:none;
    position:absolute;
    bottom:0;
    left:0;
    font-size:.875em;
    padding:0;
    margin:0;
    width:100vw;
    z-index:98;
    transform:translateY(100%);
    -webkit-transform:translateY(100%);
    border-radius:4px;
    border-top:6px solid #db0825;
    background:rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow:    0px 5px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow:         0px 5px 5px 0px rgba(0, 0, 0, 0.25);
}
li.nav_group:hover ul.nav_subgroup
{
    display:flex;
}
li.nav_subgroup_item
{
    flex:1;
    padding:15px;
}
.nav_title
{
    color:#db0825;
    cursor:default;
    font-weight:bold;
    border-bottom:1px solid rgba(50, 50, 50, .3);
    padding:6px 4px;
    display:block;
    font-size:1.125em;
}
li.nav_image
{
    vertical-align: middle;
    text-align: center;
}
ul.nav_grandchild_group
{
    margin:0;
    padding:0;
    list-style-type:none;
}
li.nav_grandchild_item
{
    border-bottom:1px solid rgba(50, 50, 50, .3);
}
li.nav_grandchild_item:last-of-type
{
    border-bottom:none;
}
li.nav_grandchild_item > a
{
    color:#272727;
    padding:6px 4px;
    display:block;
    transition:transform .2s ease;
}
li.nav_grandchild_item > a:hover
{
    transform:translateX(8px);
    text-decoration:none;
}
li.nav_grandchild_item > a:focus
{
    text-decoration:none;
}
li.TitleLi
{
    color:#db0825;
    cursor:default;
    font-weight:bold;
    font-size:1.125em;
    border-bottom:1px solid rgba(50, 50, 50, .3);
    padding:10px 4px 6px;
    display:block;
}
li.MobileElement,
.mobile_nav
{
    display:none;
}
.megamenu_image img
{
    position:relative;
    width:120px;
    height:80px;
    overflow:hidden;
}
@media (max-width: 991.9px)
{
    li.nav_grandchild_item > a{color:#fff;}
    a.nav_group_has_children svg{display:none;}
    li.megamenu_image {display: none;}
    ul.nav_megamenu li ul {min-height: 0 !important;}
    li.nav_grandchild_item > a {padding:0;border:0;}
    nav.topnav_nav {display:none;}
    .MobileElement { display:block; }
}
/* END TOP NAV */

/* BREADCRUMB NAV */
ul.breadcrumb_list
{
    list-style-type:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    font-size:.875em;
    padding:10px 0;
}
ul.breadcrumb_list li
{
    padding:0 10px;
    margin:0;
    border-right:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    height:20px;
}
ul.breadcrumb_list li a
{
    color:#707070;
}
ul.breadcrumb_list li:first-child
{
    padding-left:0;
}
ul.breadcrumb_list li:last-child
{
    border-right:0;
    padding-right:0;
}
/* END BREADCRUMB NAV */

@media screen and (max-width:1125px)
{
    .RedBack .TextOverlay
    {
        font-size: 1.222em;
    }
}
@media screen and (max-width:991px)
{
    .RedBack .TextOverlay
    {
        font-size: 1.5em;
    }
}
@media screen and (max-width:400px)
{
    .TextOverlay
    {
        font-size: 1.222em !important;
    }
}
@media screen and (max-width:325px)
{
    .TextOverlay
    {
        font-size: 1em !important;
    }
}

/* HEADER */
header
{
    background:#21407A;
    background-image:url(/resources/images/jpg/header_bg.jpg);
    background-size:cover;
    background-position:center center;
    color:#fff;
    padding:50px 0;
}
.header_logo
{
    max-width:300px;
    width:100%;
    margin:0 auto;
    display:block;
}
.header_rightbox
{
    padding-top:25px;
}
.header_rightbox_inner
{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-end;
    width:100%;
}
.header_other
{
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    align-items:center;
    margin:0 -15px 0;
    font-size:.875em;
}
.header_otherlink
{
    color:#fff;
    display:block;
    margin:0 15px;
    padding:5px 0;
    font-weight:normal;
    position:relative;
    line-height:1;
    text-decoration:none !important;
}
.header_otherlink::after
{
    content:'';
    display:block;
    width:0;
    height:2px;
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    transition:width .2s ease;
}
.header_otherlink:hover::after
{
    width:100%;
}
.header_boundary
{
    border:1px solid #fff;
    padding:5px 10px;
}
.header_boundary::after
{
    display:none;
}
.header_boundary:hover
{
    background:#fff;
    color:#214174;
}

.header_quicklinks
{
    position:relative;
    margin:0 30px;
}
.header_quicklinks > a
{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px 15px;
    font-weight:bold;
    font-size:1em;
    color:#fff;
    text-decoration:none;
    height:40px;
    border-radius:4px 4px 0 0;
}
.header_quicklinks > a svg
{
    margin-left:.25em;
}
.header_quicklinks > a:hover,
.header_quicklinks > a:focus,
.header_quicklinks > a:active,
.header_quicklinks:hover > a
{
    text-decoration: none;
    background: #DB0825;
    color: #fff;
    cursor:pointer;
    outline:none;
}
.quicklinks_list
{
    display:none;
    list-style-type:none;
    background: rgba(255, 255, 255, 0.98);
    border-radius:4px;
    padding:7px 15px;
    margin:0;
    position:absolute;
    right:-30px;
    width:300px;
    max-width:calc(100vw - 60px);
    bottom:0;
    transform:translateY(100%);
    font-weight:normal;
    min-height:100px;
    z-index:9999;
-webkit-box-shadow: 2px 4px 5px 2px rgba(0, 0, 0, 0.45);
-moz-box-shadow: 2px 4px 5px 2px rgba(0, 0, 0, 0.45);
box-shadow: 2px 4px 5px 2px rgba(0, 0, 0, 0.45);
}
.header_quicklinks > a:hover + .quicklinks_list,
.header_quicklinks > a:focus + .quicklinks_list,
.header_quicklinks > a:active + .quicklinks_list,
.quicklinks_list:hover
{
    display:block;
}
.quicklinks_list_item
{
    border-bottom: 1px solid rgba(50, 50, 50, .3);
}
.quicklinks_list_item:last-of-type
{
    border-bottom:0;
}
.quicklinks_list_item > a
{
    color: #272727;
    padding: 6px 4px;
    display: block;
    transition: transform .2s ease;
    font-size: .875em;
}
.quicklinks_list_item > a:hover
{
    transform:translateX(8px);
    text-decoration:none;
}
.header_search_container
{
    background-color:#fff;
    height:30px;
    position:relative;
    flex:1;
    max-width:250px;
}
.header_search_box
{
    display:flex;
    flex-direction:row;
    align-items:center;
    position:absolute;
    height:100%;
    width:100%;
    left:0;
    right:0;
    top:0;
    bottom:0;
    
    -webkit-appearance: none;
    border: 0;
    background: #fff;
    color: #2a2a2a;
    padding:0 30px 0 15px;
    z-index:1;
    border-radius:2px;
}
.header_search_box:focus
{
    outline:none;
}
a.header_search_button,
.mobile_search_container a.header_search_button
{
    position:absolute;
    display:flex;
    height:100%;
    width:30px;
    right:0;
    top:0;
    color:#777;
    align-items:center;
    justify-content:center;
    z-index:2;
}
a.header_search_button:focus,
a.header_search_button:hover
{
    color:#13488B;
    text-decoration:none;
    outline:none;
}
@media (max-width:991.9px)
{
    .header_logo
    {
        margin-bottom:15px;
        margin-top:15px;
    }
    .header_container
    {
        justify-content:center;
        margin-bottom:15px;
    }
    .header_quicklinks
    {
        margin:0;
        margin-left:15px;
    }
    .header_quicklinks > a
    {
        font-size:.875em;
    }
    .quicklinks_list
    {
        right:-15px;
    }
    .header_otherlink,
    .header_othertext
    {
        margin:0 10px;
        font-size:.875em;
    }
    .header_boundary
    {
        padding:10px;
    }
    .header_other
    {
        flex-wrap:wrap;
        justify-content:center;
    }
    .header_rightbox
    {
        padding-top:0;
        display:flex;
    }
    .header_rightbox_inner
    {
        justify-content:center;
        flex-wrap:wrap;
    }
}
@media (max-width:767.9px)
{
    .header_othertext,
    .header_otherlink
    {
        margin:5px 15px;
    }
    
}
/* END HEADER */

/* HEADER HOMEPAGE */
.hph_container
{
    color:#fff;
    padding-top:75px;
}
.hph_header
{
    font-weight:bold;
    font-size:7em;
    text-transform:uppercase;
    letter-spacing:2px;
    margin:0 0 5px;
    padding:0 10px;
}
.hph_header span
{
    font-family:myriad-pro;
    margin-left: -5px;
}
.hph_article_title
{
    color:#fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    margin:10px 0 3px;
    padding: 0;
    line-height: 1.1;
}
.hph_article_title a
{
    color:#fff;
    text-decoration:none;
}
.hph_article_title a:hover
{
    text-decoration:underline;
}
.hph_article_readmore
{
    font-size:1em;
    color:#dfdfdf;
    text-decoration:none;
}
.hph_article_readmore:hover
{
    text-decoration:underline;
}

@media (max-width:991.9px)
{
    .hph_container
    {
        padding-top:25px;
    }
    .hph_header
    {
        font-size:5em;
    }
}
@media (max-width:767.9px)
{
    .hph_container
    {
        padding-top:15px;
    }
    .hph_header
    {
        font-size:4em;
    }
}
/* END HEADER HOMEPAGE */

/* FOOTER */
footer
{
    padding:80px 0;
    background:#214174;
    background-image:url(/resources/images/jpg/footer_bg.jpg);
    background-size:cover;
    background-position:center center;
    color:#fff;
    position:relative;
}
.footer_upper
{
    padding-bottom:45px;
}
.footer_logo_box
{
    text-align:center;
}
.footer_text
{
    font-style:italic;
    font-family:Arial, Sans-Serif;
    padding:0 30px;
}
.footer_text p
{
    margin:1em 0;
}
.footer_copy
{
    display:block;
}
.footer_esv
{
    color:#fff;
    text-decoration:none;
}
.footer_social
{
    padding-top:20px;
    max-width:300px;
    margin:0 auto;
}
.footer_social_row
{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}
.footer_social_btn_container
{
    margin:10px 0;
}
.footer_social_btn,
.footer_social_btn_white
{
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
    font-size:20px;
    width:45px;
    height:45px;
    border-radius:100%;
    text-decoration:none;
}
.footer_social_btn svg,
.footer_social_btn_white svg
{
    transition:transform .2s ease;
}
.footer_social_mirrored svg
{
    transform:scaleX(-1);
}
.footer_social_btn:hover svg,
.footer_social_btn_white:hover svg
{
    transform:scale(1.1) rotate(-5deg);
}
.footer_social_mirrored:hover svg
{
    transform:scale(-1.1, 1.1) rotate(-5deg);
}
.footer_social_btn_white
{
    background:#fff;
    color:#214174;
}
.footer_social_btn
{
    background:transparent;
    color:#fff;
}
.footer_bottomlink_box
{
    text-align:center;
    padding:15px;
}
.footer_bottomlink
{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:bold;
    font-size:14px;
}
.subfooter
{
    padding:15px 0;
    background:#d7d8db;
    color:#214174;
    font-size:1.125em;
    text-align:center;
}
.subfooter a
{
    color:#0060a9;
}
.footer_disclaimer
{
    position:absolute;
    bottom:15px;
    color:#fff;
    opacity:.8;
    font-size:.75em;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:1280px;
    padding:0 30px;
    text-align:center;
}
@media (max-width:767.9px)
{
    .footer_text
    {
        text-align:center;
    }
    .footer_disclaimer
    {
        position:static;
        transform:none;
        padding-top:15px;
    }
}
/* END FOOTER */

/* GOOGLE TRANSLATE */
.footer_translate
{
    margin:10px 0;
    text-align:center;
}
.goog-te-gadget-icon
{
    display:none;
}
.goog-te-gadget
{
    font-size:1em !important;
    color:#fff !important;
    font-weight:normal;
}
.goog-te-gadget-simple .goog-te-menu-value
{
    color:#fff !important;
}
.goog-te-gadget-simple
{
    border:0 !important;
    padding:0 !important;
    font-size:1em !important;
    background:transparent !important;  
}
.goog-te-menu-value span
{
    color:#fff !important;
    border:0 !important;
}
.goog-te-menu-value img
{
    display:none;
}
@media (max-width:767.9px)
{
    .footer_translate
    {
        display:none;
    }
}
/* END GOOGLE TRANSLATE */

/* SCHOOLS FOOTER */
.sf_outer
{
    padding:30px 0;
    background:#fff;
}
h1.sf_header
{
    font-family: myriad-pro-condensed, sans-serif;
    font-weight:bold;
    font-size:2em;
    text-transform:uppercase;
    color:#214174;
    text-align:center;
}
h2.sf_title
{
    font-family: myriad-pro-condensed, sans-serif;
    font-weight:bold;
    text-transform:uppercase;
    font-size:1.25em;
    text-align:center;
    color:#000;
    line-height:1.3;
}
.sf_grid
{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.sf_grid a
{
    height:50px;
    margin:12px 0;
    user-select:none;
    -webkit-user-select:none;
}
.sf_grid a img
{
    max-width:100%;
    max-height:100%;
    transition:transform .2s ease;
}
.sf_grid a:hover img
{
    transform:scale(1.1);
}
/* END SCHOOLS FOOTER */

/* HOMEPAGE SLIDESHOW */
.slideshow_outer_container
{
    width:100%;
    border-bottom: 2px solid #059662;
    position: relative;
}
.slideshowOverlay
{
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+60,0.4+97 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 97%, rgba(0,0,0,0.4) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.4) 97%,rgba(0,0,0,0.4) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.4) 97%,rgba(0,0,0,0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 ); /* IE6-9 */
}
.SlideShowNavContainer
{
    position: relative;
    z-index: 500;
}
.SlideShowNav
{
    position: absolute;
    top: 50px;
}
.SlideShowNav a
{
    float: left;
    clear: left;
    margin-bottom: 10px;
    padding: 10px 15px;
    transition: padding 0.5s;
    text-decoration: none !important;
    font-size: 1.5em;
    font-weight: 700;
}
.SlideShowNav a:hover
{
    padding-left: 35px;
}
.SlideNavItem
{
    width: 180px;
}
@media screen and (max-width:991px)
{
    .wrapperElement_DIV_
    {
        display: none !important;
    }
    header .col-md-5
    {
        display: -webkit-box;
        margin: auto;
        width: 452px;
    }
}
.DownContainer
{
    position: relative;
    left:50%;
    width: 70px;
    z-index: 55;
}
.DownContainer a
{
    position: absolute;
    bottom: 140px;
    left:-50%;
}
.slideshow_container
{
    margin:0 !important;
}
.slideshow_slide
{
    position:relative;
}
.slideshow_slide img {
    display: block;
    filter:blur(3px) grayscale(.3);
    opacity:.15;
    background: #fff;
}
.slideshow_slide img {
    display: block;
    filter:blur(0px) grayscale(0);
    opacity:1;
}
.slideshow_caption_container_outer
{
    position:absolute;
    bottom:20px;
    float:left;
    right:20px;
    z-index:2;
    display:block;
}
.slideshow_caption_container_inner
{
    background:rgba(29, 29, 29, .85); 
    max-width:625px;
    left:0%;
    float:left;
    position:relative;
    padding:20px 30px;
    text-align:center;
}
.slideshow_caption_header
{
    color:#fff;
    font-weight:bold;
    font-size:1.5em;
    display:block;
    text-align:center;
    text-transform:uppercase;
}
.slideshow_caption_text
{
    color:#fff; 
    margin-bottom:5px;
    font-size:1em;
    display:block;
}
.slideshow_caption_link
{
    color:#25a0ff;
    text-decoration:none;
    font-size:0.929em;
    text-transform:uppercase;
}
@media screen and (max-width: 1180px)
{
    .slideshow_caption_container_outer
    {
    }
    .slideshow_caption_container_inner
    {
        max-width: 475px;
    }
    .slideshow_caption_header
    {
        font-size: 2em;
    }
}
@media screen and (max-width: 1065px)
{
    .slideshow_caption_container_outer
    {
        right: 10px;
        bottom: 10px;
    }
    .slideshow_caption_container_inner
    {
        max-width: 450px;
    }
}
.slideshow_image
{
    width:100%;
}
.slick-slide
{
    height:auto;
}
.slick-prev, .slick-next
{
    background:transparent !important;
    color:#fff;
    height:89px;
    width:47px;
    line-height:89px;
}
.slick-prev svg, .slick-next svg
{
    font-size: 50px;
    transition: transform 0.5s;
}
.slick-prev svg:hover, .slick-next svg:hover
{
    transform: scale(1.3);
}
.slick-prev
{
    margin-left: -35px;
}
.slick-next
{
    margin-right: -35px;
}
.slick-prev:hover, .slick-next:hover, .slick-prev:active, .slick-next:active, .slick-prev:focus, .slick-next:focus
{
    background:transparent !important;
    height:89px;
    width:47px;
}
.slick-prev:before
{
    content:normal;
    width:50px;
}
.slick-next:before
{
    content:normal;
    width:50px;
}
.slick-prev:before, .slick-next:before
{
    font-size: 50px;
    font-weight: bold;
    margin-top: 4px;
    opacity: 1 !important;
    display: block;
}
.slick-prev:focus, .slick-next:focus
{
    opacity:inherit;
}
/* END HOMEPAGE SLIDESHOW */

/* HOMEPAGE GENERIC */
hp_slider
{
    padding:0 15px;
}
.hp_slider .slick-track
{
    display:flex;
    flex-direction:row;
    margin:0 auto;
}
.hp_slider .slick-slide
{
    padding:15px;
    display:flex;
    flex-direction:column;
}
.hp_slider .slick-slide:focus,
.hp_slider .slick-slide:active
{
    outline:none;
}
.hp_section
{
    padding:60px 0;
    position:relative;
}
.hp_section_header_container
{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:row;
    width:100%;
    max-width:1280px;
    padding:0 30px;
    margin:0 auto;
}
.hp_section_header_left
{
    justify-content:flex-start;
    text-align:right;
}
.hp_section_header_right
{
    justify-content:flex-end;
    text-align:left;
}
h1.hp_section_header
{
    background:#fff;
    padding:10px 45px;
    line-height:1;
    text-transform:uppercase;
    width:50%;
    font-weight:bold;
    font-style:italic;
    color:#db0825;
    font-size:2em;
}
.homepage_link
{
    border:5px solid #fff;
    display:inline-block;
    font-size:1.5em;
    text-align:center;
    line-height:1;
    text-transform:uppercase;
    padding:10px;
    color:#fff;
    font-weight:bold;
    text-decoration:none !important;
}
.homepage_link:hover
{
    background:#fff;
    color:#db0825;
}
@media (max-width:991.91px)
{
    h1.hp_section_header{width:100%;}
}
@media(max-width:767.9px)
{
    h1.hp_section_header{font-size:1.5em;}
}
@media (max-width:499.9px)
{
    h1.hp_section_header{text-align:center;}
}
/* END HOMEPAGE GENERIC */

/* HOMEPAGE NEWS */
.news_slider_col
{
    position:relative;
}
.hp_news
{
    background:#fff;
}
.hp_news_headerbox
{
    border-right:1px solid #f0f0f0;
}
h1.hp_trending_title,
h1.hp_news_title
{
    color:#707070;
    font-weight:bold;
    font-size:2em;
    text-transform:uppercase;
    margin:0 0 15px;
    padding:0;
    letter-spacing:1px;
}
h1.hp_news_title
{
    padding-left:15px;
}
.hp_trending_postdate
{
    display:block;
    margin:10px 0;
    color:#767676;
    text-transform:uppercase;
    line-height:1;
    font-size:1.125em;
}
.hp_trending_text
{
    display:block;
    margin:15px 0;
    padding:0;
    font-size:1.5em;
    color:#272727;
}
.hp_trending_link
{
    border-color:#272727;
    color:#272727;
    font-size:1.125em;
    border-width:3px;
    padding:5px 10px;
}
.hp_trending_link:hover
{
    background:#272727;
    color:#fff;
}
.hp_news_slider
{
    margin-bottom:-125px;
    z-index:3;
}
#hp_news_dots
{
    position:absolute;
    top:15px;
    right:15px;
}
.hp_news_dots
{
    list-style-type:none;
    display:flex;
    flex-direction:row;
    justify-content:center;
    padding:0;
    margin:0;
}
.hp_news_dots li
{
    height:16px;
    width:16px;
    margin:0 4px;
    padding:2px;
    border:2px solid #707070;
    background:#fff;
    border-radius:100%;
    transition:border .3s ease;
    cursor:pointer;
}
.hp_news_dots li button
{
    display:block;
    height:100%;
    width:100%;
    padding:0;
    margin:0;
    font-size:0;
    border-radius:100%;
    border:0;
    background:#fff;
    outline:none !important;
    transition:background .3s ease;
}
.hp_news_dots li.slick-active
{
    border:1px solid #707070;
}
.hp_news_dots li.slick-active button
{
    background:#707070;
}
.slick-slide.hp_news_slide
{
    padding:0 7.5px;
}
.hp_slider .hp_article
{
    flex:1 0 auto;
    display:flex;
    flex-direction:column;
    background:#fff;
}
.imagebox_overflowfix
{
    overflow:hidden;
}
.hp_article_imagebox
{
    position:relative;
    display:table;
    padding-bottom:66.67%;
    width:100%;
    overflow:hidden;
}
.hp_article_imagebox svg,
.hp_article_imagebox img
{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    width:100% !important;
    height:100% !important;
    background:#f0f0f0;
    object-fit:cover;
    color:#707070;
    z-index:1;
    transition:transform .2s ease;
}
.hp_article_imagebox img
{
    z-index:2;
}
.hp_article_imagebox:hover svg,
.hp_article_imagebox:hover img
{
    transform:scale(1.05);
}
.hp_article_textbox
{
    padding:20px 15px;
    background:#fff;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
h3.hp_article_title
{
    color:#333;
    text-decoration:none;
    font-size:1.2em;
    font-weight:normal;
    text-transform:uppercase;
    margin:0 0 10px;
    padding:0;
    line-height:1.3;
}
.hp_article_title a
{
    text-decoration:none;
    color:inherit;
}
.hp_article_title a:hover
{
    text-decoration:underline;
}
.hp_article_text
{
    flex:1 0 auto;
}
.hp_article_readmorebox
{
    margin-top:20px;
    text-align:right;
}
.hp_article_readmore
{
    display:inline-block;
    padding:5px 10px;
    color:#db0825;
    border:2px solid #db0825;
    text-transform:uppercase;
    line-height:1;
    font-size:.875em;
    font-weight:bold;
}
.hp_article_readmore:hover
{
    background:#db0825;
    color:#fff;
    text-decoration:none;
}
@media (max-width:991.9px)
{
    .hp_news_headerbox
    {
        padding:0px 15px 30px;
        border-right:0;
        border-bottom:1px solid #f0f0f0;
    }
    .news_slider_col
    {
        padding:45px 15px 0;
        
    }
    h1.hp_news_title
    {
        padding:0;
    }
}
/* END HOMEPAGE NEWS */

/* HOMEPAGE VIDEO */
.hp_video
{
    padding-top:125px;
    background-color:#214174;
    background-image:url(/resources/images/jpg/video_bg.jpg);
    background-size:cover;
    background-position:center center;
}
.hp_video_videobox
{
    background:#fff;
    padding:10px;
}
.hp_video_videobox video
{
    width:100%;
}
.hp_video_captionbox
{
    background:#fff;
    padding:25px;
    position:relative;
    left:-40px;
    width:calc(100% + 40px);
    font-size:1.25em;
    color:#474747;
    line-height:1.3;
}
h2.hp_video_captiontitle
{
    color:#db0825;
    font-size:1.75em;
    text-transform:uppercase;
    font-weight:bold;
    line-height:1;
    margin:0 0 .33em;
    padding:0;
}
h3.hp_video_socialtitle
{
    color:#db0825;
    font-size:1.2em;
    margin: 20px 0 15px;
    font-weight: bold;
}
.hp_video_socialbox
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
}
.hp_video_socialbutton
{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#db0825;
    color:#fff;
    font-size:20px;
    width:45px;
    height:45px;
    margin:5px;
    border-radius:100%;
    text-decoration:none;
}
.hp_video_socialbutton svg
{
    transition:transform .2s ease;
}
.hp_video_socialbutton:hover svg
{
    transform:scale(1.1) rotate(-5deg);
}
@media(max-width:1199.9px)
{
    .hp_video_captionbox
    {
        left:15px;
        width:calc(100% - 30px);
    }
}
/* END HOMEPAGE VIDEO */

/* HOMEPAGE EVENTS */
.hp_events
{
    background-color:#214174;
    position:relative;
    padding-top:30px;
}
h2.homepage_events_header
{
    color:#fff;
}
.hp_events_slider
{
    margin:30px 0;
}
.homepage_events_link
{
    background:#fff;
}
.homepage_events_link::after
{
    background:var(--primary-color);
}
.hp_events_datebox
{
    height:85px;
    width:85px;
    background:#fff;
    color:#214174;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    border-radius:100%;
    line-height:1.1;
    margin:0 auto;
}
.hp_event:nth-child(odd) .hp_events_datebox
{
    background:#db0825;
    color:#fff;
}
.hp_events_datebox_month
{
    text-transform:uppercase;
    font-size:18px;
}
.hp_events_datebox_date
{
    font-size:36px;
    line-height:32px;
}
.hp_events_textbox
{
    text-align:center;
    color:#fff;
    padding:0 15px;
}
.hp_events_title
{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    margin:5px 0;
    display:inline-block;
}
.hp_events_title:hover
{
    text-decoration:underline;
}
.hp_events_linkbox
{
    text-align:right;
}
.hp_events_link
{
    font-size: 1.125em;
    border-width: 3px;
    padding: 5px 10px;
}
.hp_events_link:hover
{
    color:#214174;
}
.hp_events_infoicon
{
    display:inline-block;
    text-align:center;
    width:20px;
}
.hp_events .hp_prev,
.hp_events .hp_next
{
    color:#000;
}
/* END HOMEPAGE EVENTS */

/* HOMEPAGE BOARD */
.hp_board
{
    background-color:#ec0928;
    background-image:url(/resources/images/jpg/board_bg.jpg);
    background-size:cover;
}
.board_container
{
    max-width:1280px;
}
.super_outer
{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:flex-end;
}
.super_box
{
    background:#fff;
    color:#214174;
    text-align:right;
    padding:30px;
    position:relative;
    margin-top:-150px;
    flex:1;
    margin-bottom:30px;
    width:100%;
}
.super_dots
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:100%;
    height:100%;
    background-image:url(/resources/images/svg/bg_dots.svg);
    background-size:cover;
    background-position:center top;
    transform:rotate(180deg);
    opacity:.05;
    z-index:0;
}
.super_content
{
    position:relative;
    z-index:1;
}
h1.super_title
{
    font-size:2em;
    font-weight:bold;
    text-transform:uppercase;
    margin:0;
}
h2.super_name
{
    font-size:2em;
    font-weight:normal;
    margin:0;
}
img.super_image
{
    margin:30px 0 60px;
    max-width:75%;
}
.super_text
{
    display:block;
    color:#214174;
    font-size:1.25em;
    line-height:1.3;
    max-width:75%;
    margin-left:auto;
}
.super_link
{
    padding-left:30px;
    padding-right:30px;
}
.board_box
{
    text-align:right;
    color:#fff;
    flex:1;
}
h1.board_title
{
    font-weight:normal;
    line-height:0.9;
    font-size:5em;
    text-transform:uppercase;
    margin:0;
    padding:0;
}
.board_text
{
    font-size:1.25em;
    line-height:1.3;
    margin:50px 0;
    display:block;
}
.governing_box
{
    width:100%;
}
h1.governing_title
{
    text-align:right;
    color:#fff;
    font-weight:bold;
    text-transform:uppercase;
    font-size:2em;
    padding:0;
    margin:0 0 30px;
}
.governing_linkbox
{
    display:flex;
    flex-direction:row;
}
.governing_link
{
    flex:1;
}
.governing_link:first-child
{
    margin-right:15px;
}
@media (max-width:991.9px)
{
    .super_box
    {
        margin-top:-120px;
    }
    .super_outer
    {
        padding-top:30px;
        padding-bottom:30px;
    }
    h1.board_title
    {
        font-size:4em;
    }
}
@media (max-width:767.9px)
{
    h1.board_title
    {
        font-size:3em;
    }
    .board_text
    {
        margin:30px 0;
    }
    .super_image,
    .super_text
    {
        max-width:100%;
    }
}
/* END HOMEPAGE BOARD */

/* HOMEPAGE FACTS */
.hp_facts
{
    padding-top:30px;
    background-color:#214174;
}
.hp_facts_dots
{
    z-index:0;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    height:100%;
    width:100%;
    background-image:url(/resources/images/svg/bg_dots.svg);
    background-size:cover;
    opacity:.1;
    filter:invert(100%);
}
.facts_container_fluid
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    width:100%;
    max-width:1000px;
    padding:0 15px;
    margin:0 auto;
}
.facts_box
{
    padding:30px 45px;
    color:#fff;
}
h2.facts_number
{
    font-size:4.5em;
    font-weight:bold;
    letter-spacing:-0.03125em;
    margin:0;
    padding:0;
    line-height:1;
    flex-direction:row;
    align-items:center;
    text-align:center;
}
h2.facts_number small
{
    margin-left:5px;
}
h3.facts_title
{
    font-size:1.2em;
    line-height:1.1;
    margin:.33em .23em;
    padding:0;
    font-style:italic;
    text-align:center;
    color:#D0DBF9;
}
p.facts_text
{
    font-weight:normal;
    margin:0;
    font-size:1.125em;
}
@media (max-width:991.9px)
{
    .facts_box
    {
        padding:30px;
    }
}
@media (max-width:767.9px)
{
    .facts_box
    {
        padding: 15px 0;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    h2.facts_number
    {
        font-size:3em;
        margin-bottom:0;
        justify-content:center;
    }
    h3.facts_title
    {
        font-size:1.5em;
    }
}
/* END HOMEPAGE FACTS */

.eventCalendar_main_hasEvents
{
	background-color: Silver;	
}
.gallerycomponent_titletext
{
	font-size:1.143em;
	color: black;
	text-decoration: none;	
}
.gallerygrouping_item
{
	margin-left: 5px;
	margin-right: 10px;
	float: left;
	width: 130px;
	height: 150px;
}
.gallerycomponent_smalllink
{
	font-size: 0.857;
	color: Blue;
	text-decoration: none;	
}

/* DYNAMIC NAV */
#dynamic_nav .slicknav_menu
{
    background:transparent;
    margin-top:-40px;
}
#dynamic_nav a
{
    text-decoration:none !important;
}
#dynamic_nav .slicknav_nav > li
{
    border-left: 2px solid #efefef;
    border-right: 2px solid #efefef;
    border-bottom:2px solid #dfdfdf;
}
#dynamic_nav .slicknav_nav li > a
{
    display:flex;
    flex-direction:row;
    align-items:center;
    color:#3C3C3C;
    border-radius:0;
    transition:padding .2s ease;
    padding:10px;
    font-size:14px;
    margin:0;
}
#dynamic_nav .slicknav_nav li > a:not(.slicknav_row):hover
{
    padding-left:15px;
    padding-right:5px;
}
#dynamic_nav .slicknav_nav li > a a
{
    background:transparent;
    color:inherit;
}
#dynamic_nav .slicknav_nav a:hover
{
    color:#db0825;
    text-decoration:none;
    background:transparent;
}
a.slicknav_row > a
{
    flex:1;
    padding-right:5px;
    transition:transform .2s ease;
}
a.slicknav_row > a:hover
{
    transform:translateX(5px);
}
#dynamic_nav .slicknav_nav .slicknav_arrow
{
    margin:0;
    padding:0 10px;
}
a.current_page,
a.current_page:hover
{
    background:#dfdfdf !important;
}
@media (min-width:992px)
{
    #dynamic_nav ul.slicknav_nav 
    {
        margin-bottom:30px;
    }
    #dynamic_nav .slicknav_menu
    {
        background:transparent;
        padding:0;
    }
    #dynamic_nav .slicknav_nav > li:first-of-type
    {
        border-color:#214174;
    }
    #dynamic_nav .slicknav_nav > li:first-of-type a
    {
        background:#214174;
        color:#fff;
        font-weight:bold;
        font-size:16px;
    }
    #dynamic_nav .slicknav_nav ul:not(.slicknav_nav) li > a
    {
        padding:7px 10px;
    }
    #dynamic_nav .slicknav_btn
    {
        display:none;
    }
    #dynamic_nav ul.slicknav_nav,
    #dynamic_nav .slicknav_menu
    {
        display:block !important;
    }
}
@media (max-width:991.9px)
{
    #dynamic_nav .slicknav_menu
    {
        border:2px solid #dfdfdf;
        margin:15px 0;
        padding:0;
    }
    #dynamic_nav .slicknav_btn
    {
        display:block;
        background:transparent;
    }
    #dynamic_nav ul.slicknav_nav
    {
        display:block;
    }
    #dynamic_nav .slicknav_icon-bar
    {
        background:#333;
        box-shadow:none;
    }
    #dynamic_nav .slicknav_btn,
    #dynamic_nav .slicknav_menutxt
    {
        text-shadow:none;
        color:#333;
    }
    #dynamic_nav .slicknav_nav > li
    {
        border-left:0;
        border-right:0;
    }
    #dynamic_nav .slicknav_nav > li:last-child
    {
        border-bottom:0;
    }
}
/* END DYNAMIC NAV */

/* LINKS AND DOWNLOADS COMPONENTS */
.downloads_component_container,
.links_component_container
{
}
.downloads_list, 
.links_list
{
    display:block;
    margin:0;
    padding:0;
}
.downloads_list_item,
.links_list_item
{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin:10px 0;
    padding:0;
    padding-left:25px;
    position:relative;
}
.downloads_list_item span:before,
.links_list_item span:before
{
    line-height: 0;
    content: '•';
    display: block;
    width: 25px;
    height: 5px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 10;
    transform: translateY(-50%);
    font-size: 25px;
    color:Black;
}

.downloads_list_item:before img,
.links_list_item img:before img
{
    line-height: 0;
    content: 'R';
    display: block;
    width: 25px;
    height: 5px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 10;
    transform: translateY(-50%);
    font-size: 25px;
}

.downloads_link,
.links_link
{
}
.downloads_image,
.links_image
{
    padding-bottom:15px;
}
.downloads_description,
.links_description
{
    display:block;
}
/* END LINKS AND DOWNLOADS COMPONENTS */

/* NEWS COMPONENT */
.news_topbar
{
    text-align:right;
    padding: 18px 15px;
    margin:15px 0;
    line-height:1;
    background-color:#21407A;
    color:#fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
.news_archivelink,
.news_topbar a
{
    color:#ffffff;
}
.news_archivelink:hover,
.news_topbar a:hover
{
    color:#fff;
    outline:none;
}
.news_archivelink:focus,
.news_topbar a:focus
{
    color:#fff;
}
.news_list
{
    display:block;
    list-style-type:none;
    padding:0;
    margin:0;
}
.news_list_item
{
    padding:20px;
    margin:15px 0;
    background:#ffffff;
    display:flex;
    flex-direction:row;
    width: 100%;
    border: 1px solid #dfdfdf;
}
.news_article_imagecontainer
{
    max-width:50%;
}
.news_article_imagecontainer img
{
    padding-right:20px;
    display:block;
    margin:0 auto;
}
h3.news_article_title,
h3.news_article_title a
{
    margin:0 0 5px;
    font-size:18px;
    font-weight:600;
}
.news_subheader
{
    display:block;
}
.news_readmore
{
    font-size:16px;
}
.news_postinfo
{
    font-style:italic;
    display:block;
    margin:15px 0;
    text-align:right;
}
.news_articlebox
{
    display:flex;
    flex-direction:row;
}
.news_articleimage
{
    width:30%;
    padding:15px;
}
.news_articletext
{
    padding:15px;
    flex:1;
}
@media (max-width:767.9px)
{
    .news_list_item
    {
        flex-direction:column;
    }
    .news_article_imagecontainer
    {
        max-width:100%;
    }
    .news_article_imagecontainer img
    {
        padding-right:0;
        padding-bottom:20px;
    }
    .news_articlebox
    {
        flex-direction:column;
        align-items:center;
    }
    .news_articleimage
    {
        width:auto;
        max-width:100%;
    }
    .news_articletext
    {
        flex:none;
        align-self:stretch;
    }
}
/* END NEWS COMPONENT */

/* ARTICLE VIEW */

.news_postinfo
{
    font-style:italic;
    display:block;
    margin:15px 0;
    text-align:right;
}
.news_articlebox
{
    display:flex;
    flex-direction:row;
}
.news_articleimage
{
    padding:15px;
    max-width:25%;
}
.news_articletext
{
    padding:15px;
    flex:1;
}
@media (max-width:767.9px)
{
    .news_articlebox
    {
        flex-direction:column;
        align-items:center;
    }
    .news_articleimage
    {
        width:auto;
        max-width:100%;
    }
    .news_articletext
    {
        flex:none;
        align-self:stretch;
    }
}
/* END ARTICLE VIEW */

/* 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;
}
/* END VIDEO COMPONENT */

.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 */
.employment_titletext
{
	font-size: 1.143em;
	color: #666666;
	font-weight: bold;	
}
.employment_maintext
{
	font-size: 0.929em;
	color: Black;
	font-weight: bold;	
}
.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_filterbar
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:flex-start;
    align-items: center;
    color:#fff;
    padding: 10px 15px;
    margin: 15px 0;
    line-height: 1;
    background-color:#214174;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
.mastercalendar_filterbar span,
.mastercalendar_filterbar a
{
    color:#fff;
    margin:.5em;
}
.mastercalendar_filterbar_spacer
{
    flex:1 0 auto;
}
.mastercalendar_filterpanel
{
    padding:10px 15px;
    background:#efefef;
    border:1px solid #ddd;
    margin-bottom:15px;
    margin-top:-15px;
}
.mastercalendar_filterpanel_list
{
    display:block;
    padding:0;
    margin:0;
    list-style-type:none;
}
.mastercalendar_filterpanel_list li
{
    margin:5px 0;
}
.mastercalendar_filterpanel_list label
{
    display:inline;
    font-weight:normal;
}
.mastercalendar_filterbutton
{
    background:#13488B;
    border:2px solid #13488B;
    padding: 5px 10px;
    margin: 15px 0 0;
    color:#fff;
    text-align: center;
    display: block;
    width: 100%;
}
.mastercalendar_filterbutton:hover
{
    background: transparent;
    color:#13488B;
}
.mastercalendar_rssbox
{
    margin:15px 0;
    text-align:right;
    font-size:.875em;
}
.mastercalendar_event_container
{
    padding:15px;
    background: #efefef;
    border: 1px solid #ddd;
    margin:15px 0;
    font-size:.875em;
}
h3.mastercalendar_event_title
{
    font-size:18px;
    font-weight:bold;
    margin:0 0 .67em;
}

.mastercalendar_month_calendar
{
    table-layout:fixed;
    border-collapse:collapse;
    min-width: 100%;
}
.mastercalendar_month_calendar td, 
.mastercalendar_month_calendar th
{
    padding:5px;
    border:1px solid #dddddd;
    vertical-align:top;
}
.mastercalendar_month_event
{
    font-size:.777em;
    margin:10px 0;
}
@media (max-width:767.9px)
{
    .mastercalendar_month_calendar
    {
        table-layout:auto;
    }
}
/* 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 */
.events_topbar
{
    text-align:right;
    padding: 18px 15px;
    margin:15px 0;
    line-height:1;
    background-color:#21407A;
    color:#fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
.events_viewall
{
    color:#ffffff;
}
.events_viewall:hover
{
    color:#ffffff;
    outline:none;
}
.events_viewall:focus
{
    color:#ffffff;
    outline:none;
    text-decoration:none;
}
.events_list
{
    list-style-type:none;
    margin:0;
    padding:0;
}
.events_list_item
{
    margin: 15px 0;
    
    display: flex;
    flex-direction: row;
    width: 100%;
}
.events_textcontainer
{
    flex:1;
    padding:20px;
    border: 1px solid #dfdfdf;
    border-left:none;
}
h3.events_eventtitle
{
    line-height:1.6;
    font-size:18px;
    margin:0;
}
.events_datecontainer
{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:#21407A;
    user-select:none;
    color:#fff;
    width:100px;
    padding:15px 0;
    line-height:1;
}
.events_month
{
    text-transform:uppercase;
    font-size:1.125em;
}
.events_date
{
    font-size:2.25em;
}
.events_infobox
{
    font-size:.875em;
    line-height:1.6;
}
.events_info_icon
{
    display:inline-block;
    width:1.5em !important;
}
.monthly
{
    border:1px solid #dfdfdf;
    overflow:hidden;
    margin:15px auto;
}
@media (max-width:499.9px)
{
    .events_list_item
    {
        flex-direction:column;
    }
    .events_datecontainer
    {
        width:100%;
        min-height:80px;
        font-size:14px;
    }
    .events_textcontainer
    {
        border-top:0;
        border-left:1px solid #dfdfdf;
        padding:15px;
    }
    h3.events_eventtitle
    {
        font-size:16px;
    }
}
.eventCalendar, .weeklyEventCalendar
{
    width:100%;
    font-size:1em;
    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 */
{
    border:none;
    font-size:1.429em;
    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.714em;
    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
{
    font-weight:bold;
}
.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, .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;
}
/* 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 */
label.label-normal
{
    font-weight:normal;
}
.archive_filter_container
{
    background-color:#fff;
    padding:20px;
    margin:15px 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
h2.archive_filter_header
{
    font-size:1.5em;
    margin:0 0 .67em;
    padding:0;
}
h3.archive_filter_title
{
    font-weight: bold;
    color: #333333;
    padding:10px 0 5px 0;
}
.archive_filter_button
{
    background:#13488B;
    border:2px solid #13488B;
    padding:5px 10px;
    margin:15px 0 0;
    color:#fff;
    text-align:center;
    display:block;
    width:100%;
}
.archive_filter_button:hover
{
    background:transparent;
    color:#13488B;
}
.archive_filter_radiolist
{
    display:block;
    padding:0;
    margin:0;
    list-style-type:none;
}
.archive_filter_radiolist label
{
    font-weight:normal;
}
.archive_building_select
{
    padding:10px;
    background:#efefef;
}

.archive_paging_menu,
h3.archive_month_title
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    padding: 10px 15px;
    margin: 15px 0;
    line-height: 1;
    background-color: #13488B;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}
h3.archive_month_title
{
    cursor:pointer;
}
.archive_paging_button
{
    background:#fff;
    border-radius:3px;
    border:3px solid #fff;
    color:#13488B;
    cursor:pointer;
    display:inline-block;
    margin:0 2px;
    padding:2px 3px;
    line-height:1;
}
.archive_paging_button:hover,
.archive_paging_button:active,
.archive_paging_button:focus
{
    background:transparent;
    color:#fff;
}
.archive_paging_button_disabled
{
    cursor:default;
    opacity:0.8;
}
.archive_paging_button_disabled:hover
{
    cursor:default;
    background:#fff;
    color:#13488B;
}
.archive_month
{
    display:none;
}
.archive_newsitem
{
    background-color:#fff;
    padding:20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    margin:15px 0;
}
.archive_newsitem_header
{
    font-size:1.125em;
    color:#13488B;
}
.archive_newsitem_content
{
    margin:.67em 0;
}
.archive_newsitem_thumbnail
{
    float:left;
    margin-right:15px;
    margin-bottom:15px;
    width:25%;
    max-width:250px;
    min-width:150px;
    display:table;
}
.archive_newsitem_postinfo
{
    font-size:.875em;
    display:block;
    text-align:right;
    margin-top:.67em;
}
@media (max-width:767.9px)
{
    .archive_newsitem_thumbnail
    {
        display:table;
        float:none;
        margin:0 auto 15px;
        width:auto;
        max-width:100%;
        min-width:0px;
    }
}
/* END ARCHIVE NEWS */

/* TEXT WINDOW */
.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 */
ul.LiGallery
{
  width: 100%;
  padding: 0;
  margin: 0 0 2em 0;
  list-style-type: none;
}
ul.LiGallery li span
{
  display: block;
  width: 100%;
  text-align:center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

ul.LiGallery li a
{
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding: 56.25% 0 0 0;
  overflow: hidden;
}

img.LiPhoto
{
  position: absolute;
  display: block;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto 0 auto;
}
/* END LIGHTBOX */

/*Public User Dashboard */
.DashboardNav
{
    width:100%;
    border:1px solid #C1C1C1;
    padding:11px;
    margin-bottom:5px;
}
/* end dashboard */

.slicknav_nav .slicknav_row:hover {
    background: #504749;
}
.GoogleSearchContainer
{
    width: 100%;
    position: fixed;
    z-index: 500000000000;
    padding: 20px 0;
    top: -150px;
    transition: all 0.5s;
}
.GoogleSearchContainer.Open
{
    top: 0;
}
.SearchClose
{
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 1.25em;
}
.gsc-control-cse
{
    background: transparent !important;
    border: none !important;
}

@media screen and (max-width:582px)
{
    .SchoolName
    {
        width: 100%;
    }
    .HeaderLogo
    {
        display: none;
    }
}
.MegaMenuTitle
{
    font-weight: bold;
}
.PopularLinksContainer
{
    width: 100%;
}
.MobileSlider
{
    display: none;
    padding:10px 15px;
    background:#272727;
    position:fixed;
    top: 0;
    left:0;
    width:100%;
    z-index:998;
    transition:top .3s ease;
}
.MobileSlider a
{
    color:#fff;
    text-decoration: none;
    text-transform: uppercase;
}
#mobile_top_nav
{
    position: fixed;
    top: 0;
    left:0;
    bottom:0;
    z-index:999;
    width: 300px;
    max-width:100%;
    height: 100vh;
    transform:translateX(-100%);
    border-right:2px solid #121212;
    transition:transform .3s ease;
    background: #272727;
    overflow:auto;
    padding: 10px 20px;
}
.MegaMenu_closebutton
{
    text-transform:uppercase;
    padding-bottom:10px;
}
.MegaMenu_closebutton svg
{
    transition:transform .3s ease;
}
.MegaMenu_closebutton a:hover
{
    text-decoration:none;
}
.MegaMenu_closebutton a:hover svg
{
    transform:rotate(360deg);
}

@media (max-width: 991.9px)
{
    body
    {
        padding-top:40px;
    }
    #mobile_top_nav.Open
    {
        transform:translateX(0%);
    }
    .LiquidHeader.Open ~ .MobileSlider
    {
        top:51px;
    }
    .MobileSlider
    {
        display:block;  
    }
}

/* Mega Menu */
.MegaMenu ul
{
    color:#fff;
    padding: 0;
    margin: 0;
    list-style: none;
}
.MegaMenu a
{
    color:#fff;
}
.MegaMenu > ul > li > ul
{
    height: 0;
    transition: height 0.5s;
    overflow: hidden;
    padding-left: 15px;
}
.MegaMenu > ul > li > ul > li
{
    padding: 3px 0;
}
.MegaMenu .Drop
{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:3px 0;
}
.MegaMenu .Arrow
{
    color:#fff;
    float:right;
    transition:transform 0.25s;
    cursor:pointer;
}
.MegaMenu .Drop.Open .Arrow
{
    transform: rotate(90deg);
}

/* IFrame in Modal */
.bootbox-body iframe
{
    position: relative;
    height: 90vh;
}
/* End IFrame in Modal */


/* 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 */

/* PROTECTED PAGES */
.protected_content
{
    padding:70px 0;
}
/* END PROTECTED PAGES */