﻿
@import url("https://use.typekit.net/wdt6ezg.css");


/* GENERAL LAYOUT */

html, body, form
{
    padding:0;
    margin:0;
    height:100vh;
}
body
{
    line-height:1.4;
    color:#272727;
    font-size:16px;
    font-family:futura-pt, Sans-Serif;
}
.flex-form
{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}
.flex-content
{
    flex:1 0 auto;
}

.interior_container
{
    padding-top:60px;
    padding-bottom:60px;
}
.container-fluid
{
    max-width:1400px;
    width:100%;
    margin:0 auto;
}

.flex-container
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.flex-container::before,
.flex-container::after
{
    display:none;
}

@media (max-width:991.9px)
{
    .col-sm-hidden
    {
        display:none;
    }
}

a{text-decoration:none; color:#182f57;}
a:hover {text-decoration: underline;}
a img {border:none;}

.slick-slide{height:auto;}
.slick-slide:focus {outline:none;}

h1, h2, h3, h4, h5, h6{line-height:1;}

/* Use this for page headers */
h1.page_header
{
    font-family:"futura-pt", sans-serif;
    margin: 0;
    padding:30px 0 0;
    font-size: 2.5em;
    color:#182f57;
    font-weight:700;
}

/* Use this for component headers */
h2.component_header
{
    font-family: "futura-pt", sans-serif;
    color:#333;
    font-size:1.75em;
    margin:0 0 .33em;
    font-weight:700;
}

/* Use this for titles inside of components */
/* Ex: Textwindow titles */
h3.component_title
{
    color: #182f57;
    font-size: 1.125em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 .67em;
    padding: 0;
}

@media (max-width:991.9px)
{
    .page_header_container
    {
        background:#182f57;
    }
    h1.page_header
    {
        font-size:2em;
        color:#fff;
        padding:15px 0;
    }
    h2.component_header
    {
        font-size:1.5em;
    }
    h3.component_title
    {
        font-size: 1em;
    }
}
@media (max-width:767.9px)
{
    h1.page_header
    {
        font-size:1.5em;
    }
    h2.component_header
    {
        font-size:1.25em;
    }
    h3.component_title
    {
        font-size: 1em;
    }
}

.singlewindow
{
}
.dualwindow_left
{
}
.dualwindow_right
{
}

/* Use this for subtitles inside of components */
/* Ex: Textwindow subtitle (depricated) */
h4.component_subtitle
{
    
}

/* Container that surrounds every component */
/* Note: Also contains component headers */
.component_container
{
    margin-bottom:30px;
}

/* Clearfix for component container */
.component_container:before,
.component_container:after
{
    content:"";
    display:table;
    clear:both;
}
.col-md-0 /*Fix for components defaulting to 0 */
{
    padding:0 15px;
}
/*Used with some components, such as News. Using padding here may cause uneven sizing of different component types. */
.component_container_inner
{
}

/* 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: White;	
}
.schoolclosings_maintext
{
	
	font-weight: normal;
	color: White;	
}
/* END SCHOOL CLOSINGS */

/* TOP NAV */
nav
{
    padding:0;
    margin:0;
    background:#182f57;
    border-bottom:1px solid #000000;
}
nav a:hover
{
    text-decoration:none;
}
ul.nav-group
{
    display:flex;
    justify-content:space-between;
    width:100%;
    list-style-type:none;
    z-index:9999;
    padding:0;
    margin:0;
}
li.nav-item
{
    position:relative;
}
li.nav-item > a
{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 15px;
    height:50px;
    color: #fff;
    cursor:pointer;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}
li.nav-item:hover > a
{
    background:#a32422;
    color:#fff;
}
ul.sub-nav-group
{
    position:absolute;
    bottom:0;
    left:0;
    transform:translateY(100%);
    
    margin:0;
    padding:10px;
    width:300px;
    min-width:100%;
    display:none;
    background:#fff;
    z-index:999;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow:    0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow:         0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
li.sub-nav-item
{
    display:block;
    margin:7px 0;
}
li.sub-nav-item > a
{
    display:block;
    font-weight: 400;
    font-size:.875em;
    color:#182f57;
    padding:0 5px;
}
li.sub-nav-item > a:hover
{
    color:#000;
}
li.nav-item:nth-child(1n+6) ul.sub-nav-group
{
    left: calc(-300px + 100%);
}
li.nav-item:hover ul.sub-nav-group
{
    display:block;
}

li.sub-nav-item > a.nav_title
{
    cursor:default;
    font-weight:bold;
    font-size:.925em;
    color:#000;
}
li.sub-nav-item > a.nav_title:hover
{
    background:none;
    color:#000;
}
.slicknav_menu, .mobile_nav{display:none;}
.slicknav_brand
{
    padding:0 15px;
}
.mobile_logo
{
    height:100%;
    display:none;
}
@media screen and (max-width:1050px)
{
    nav ul li a
    {
        font-size: 0.778em;
    }
}
@media screen and (max-width: 991.9px)
{
    #logo {text-align:center;margin:0 auto;width:100%;display:block;}
    #navigation, nav {display:none;}
    .js .slicknav_menu {display:block;}
    #mobile_top_nav .slicknav_menu
    {
        background-color:#FFCD00;
    }
    #mobile_top_nav .slicknav_btn
    {
        background-color:#182f57;
    }
    #mobile_top_nav .slicknav_nav a
    {
        color:black;
    }
}
@media (max-width:767.9px)
{
    .mobile_logo
    {
        display:block;
    }
}
/* END TOP NAV */

/* HEADER */
header
{
    background:#fff;
    padding:25px 0;
}
header .flex-container
{
    flex-wrap:nowrap;
    align-items:center;
}
.header_logo
{
    width:100%;
    max-width:235px;
    padding:0 15px;
    transition:transform .3s ease;
}
.header_logo:hover
{
    transform:scale(1.05);
}
.header_logo img
{
    max-width:100%;
}
.header_titlebox
{
    padding:0 15px;
    align-self:center;
}
.school_name
{
    width:300px;
    max-width:100%;
    text-align:center;
    flex:1;
}
h1.header_title
{
    font-family:"futura-pt", sans-serif;
    font-weight:700;
    color:#a32422;
    font-size:3.125em;
    line-height:1;
    margin:0;
    padding:0;
}
.header_line
{
    background-color:#a32422;
    height:1px;
    margin:6px 0 3px;
}
h2.header_subtitle
{
    font-family:"futura-pt", sans-serif;
    color:#a32422;
    font-size:1.875em;
    font-weight:500;
    text-transform:none;
    margin:0;
    padding:0;
}
.divHdrButtons
{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    flex:1;
}
.divButtonsContainer
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:45%;
    max-width:225px;
    margin-bottom: 10px;
    display:none;
}
.hdrButton
{
    background: #182f57;
    border-radius:5px;
    padding:5px 10px;
    display:block;
    color:white;
    font-weight:bold;
}
.hdrButton:hover, .hdrButton:focus
{
    color:white;
}
.divSearchTransl
{
    display:flex;
}
.header_translate
{
    flex:1 0 auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding-right:30px;
    font-size:1.250em;
}
.header_search
{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    position:relative;
}
.header_search_expandbutton
{
    text-decoration:none;
    color:#fff;
    background:#182f57;
    cursor:pointer;
    transition:transform .2s ease;
    display:flex;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    border-radius:100%;
}
.header_search_expandbutton:hover
{
    color:#fff;
    text-decoration:none;
}
.header_searchbox_container
{
    position:absolute;
    top:50%;
    right:0;
    width:0;
    max-width:100vw;
    background:#fff;
    
    display:flex;
    flex-direction:row;
    transform:translateY(-50%);
    transition:width .2s ease;
    overflow:hidden;
}
.header_searchbox
{
    flex:1;
    height:40px;
    display:flex;
    align-items:center;
    border:none;
    color:#000;
}
.header_searchbox:focus
{
    outline:none;
}
.header_search_button,
.header_search_closebutton
{
    height:40px;
    width:40px;
    cursor:pointer;
    color:#182f57;
    display:flex;
    align-items:center;
    justify-content:center;
}
.header_search_button svg
.header_search_expandbutton svg
{
    transition:transform .2s ease;
}
.header_search_button:hover svg,
.header_search_expandbutton:hover svg
{
    transform:scale(1.1) rotate(5deg);
}
.header_search_closebutton:hover
{
    transform:rotate(360deg);
}
.header_search_expanded
{
    width:300px;
    transition:width .2s ease;
    border:2px solid #182f57;
}
.divSocialContainer
{
    margin-top:10px;
}
.divSocial
{
}
.hdrSocialButton
{
    text-decoration:none;
    color:#fff;
    background:#182f57;
    cursor:pointer;
    transition:transform .2s ease;
    display:flex;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    border-radius:100%;
}
.hdrSocialButton svg
{
    transition:transform .2s ease;
}
.hdrSocialButton:hover svg, .hdrSocialButton:focus svg
{
    transform:scale(1.1) rotate(5deg);
}
@media (max-width:991.9px)
{
    h1.header_title
    {
        font-size:30px;
    }
    h2.header_subtitle
    {
        font-size:16px;
    }
}
@media (max-width:767.9px)
{
    header .flex-container
    {
        justify-content:flex-end;
    }
    .header_titlebox
    {
        flex:1;
    }
    .header_translate
    {
        display:none;
    }
    h1.header_title
    {
        font-size:24px;
        line-height:1.1;
        margin:0;
    }
    .header_logo,
    h2.header_subtitle
    {
        display:none;
    }
    .subfooter_container
    {
        font-size:.75em;
    }
}
/* END HEADER */

/* 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 */

/* FOOTER */
footer
{
    background:#313131;
    color:#fff;
    padding:50px 0;
    width:100%;
}
.footer_logo
{
    width:100%;
    max-width:200px;
    padding:15px;
    margin:0 auto;
}
.footer_logo img
{
    transition:transform .3s ease;
    max-width:100%;
}
.footer_logo a:hover img
{
    transform:scale(1.05);
}
.footer_right
{
    padding:0 15px;
    flex:1;
}
.footer_titlebar
{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    margin-bottom:30px;
    flex-wrap:wrap;
}
.footer_title
{
    font-size:24px;
    font-family: "futura-pt", sans-serif;
    font-style: normal;
    font-weight: 700;
    padding:0 15px;
}
.footer_since
{
    font-weight:400;
    font-style:normal;
    font-size:30px;
    padding:0 15px;
}
.footer_schoolrow
{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    justify-content:flex-start;
    flex-wrap:wrap;
}
.footer_school
{
    flex:1;
    display:block;
    min-width:205px;
    padding:15px;
}
.footer_school2
{
    padding:5px;
}
h3.footer_school_title
{
    margin:0;
    padding:0;
    text-transform:uppercase;
    font-weight:600;
    line-height:1;
    font-size:1em;
    letter-spacing:1px;
}
ul.footer_school_list
{
    list-style-type:none;
    padding:0;
    margin:10px 0;
    font-size:0.875em;
}
ul.footer_school_list2
{
    list-style-type:none;
    padding:0;
    margin:0;
    font-size:0.875em;
    display:flex;
    flex-direction:row;
    justify-content:center;
}
ul.footer_school_list2 li
{
    padding:0 10px;
}
ul.footer_school_list a
{
    color:White;
}
ul.footer_school_list2 a
{
    color:White;
}
.subfooter_container
{
    align-items:center;
    justify-content:space-between;
    margin:30px auto 0;
}
.subfooter_item
{
    padding:7px 15px;
    flex:1 0 auto;
    max-width:100%;
}
.subfooter_item a
{
    color:#fff;
    text-decoration:none;
}
.subfooter_item a:hover
{
    text-decoration:underline;
}
@media screen and (max-width:1100px)
{
    ul.footer_school_list2{justify-content:center;}
}
@media (max-width:991.9px)
{
    .subfooter_item
    {
        text-align:center;
    }
}
@media (max-width:767.9px)
{
    footer .flex-container
    {
        flex-direction:column;
    }
    .footer_titlebar
    {
        flex-direction:column;
        text-align:center;
    }
    .footer_schoolrow
    {
        margin:0 -10px;
    }
    .footer_school
    {
        flex:none;
        width:50%;
        min-width:0;
        padding:10px;
    }
    h3.footer_school_title
    {
        font-size:.875em;
    }
    ul.footer_school_list
    {
        font-size:.75em;
    }
}
@media (max-width:349.9px)
{
    .footer_school
    {
        text-align:center;
        width:100%;
    }
}
/* END FOOTER */

/* HOMEPAGE GENERIC */
.hp_section
{
    padding:60px 0 80px;
    background:#f7f7f7;
}
.hp_section_header
{
    text-align:center;
    padding:0 30px;
}
.hp_section_header h1
{
    display:inline-block;
    text-transform:uppercase;
    font-weight:bold;
    color:#000;
    font-size:18px;
    padding:0 0 20px;
    margin:0 0 35px;
    position:relative;
    letter-spacing:2px;
}
.hp_section_header h1::after
{
    content:'';
    display:block;
    width:70px;
    height:3px;
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    background-color:#d2d2d2;
}
/* END HOMEPAGE GENERIC */

/* HOMEPAGE SLIDESHOW */
.slideshow_outer_container
{
    width:100%;
    border-bottom: 4px solid #5699d3;
    position: relative;
}
.slideshowOverlay
{
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index:3;
    top:0;
    /* 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 */
}
.slideshow_container
{
    margin:0 !important;
}
.slideshow_slide
{
   
    position:relative;
}
.slideshow_caption_container_outer
{
    position:absolute;
    bottom:20px;
    float:left;
    right:20px;
    z-index:5;
    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;
}
.slideshow_image
{
    width:100%;
    aspect-ratio: 1700 / 510; /* Use this for auto-cropping images to fit set dimensions. Must set height to auto, and ratio is width divided by height */
    height: auto;
    object-fit: cover;
    object-position: center center;
}
.slick-slide
{
    height:auto;
}
.slick-dots
{
    bottom:20px;
}
.slick-dots li button::before
{
    font-size:20px;
    opacity:1;
    color:#FFF;
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: #232323;
}
.slick-dots li.slick-active button:before
{
    opacity:1;
    color:#5699d3;
}
.slick-prev
{
    left:0;
    z-index:3;
}
.slick-next
{
    right:0;
    z-index:3;
}
.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;
}
.hpSlideshowPauseAndPlay
{
    position: absolute;
    right: 100px;
    z-index:999;
    bottom:5px;
}
.hpSlideshowPauseAndPlay button
{
    background:transparent;
    border:none;
    color:White;
    font-size:30px;
    text-shadow: 0 0 10px #333;
}
.hpSlideshowPauseAndPlay button:focus
{
    border:2px solid blue;
}
.SlideShowNavContainer
{
    position:absolute;
    top:0;
    position: relative;
    z-index: 5;
}
.SlideShowNavContainer
{
    position:absolute;
    top:0;
}
.SlideShowNav
{
    position: absolute;
    top:78px;
}
.SlideShowNav a
{
    float: left;
    clear: left;
    margin-bottom: 10px;
    transition: padding 0.5s;
    text-decoration: none !important;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    background:rgba(163,36,34, .80);
    border-radius:0 20px 20px 0;
    font-size:1.250em;
    font-family: "futura-pt", Sans-Serif;
    line-height:1;
    padding:13px 10px;
}
.SlideShowNav a:hover
{
    background:rgba(163,36,34, 1);
}
.SlideShowNav svg
{
    font-size:35px;
    margin-right:5px;
}
.SlideNavItem
{
    width:190px;
    display:flex;
    align-items:center;
}
@media screen and (max-width:1530px)
{
    .SlideShowNav
    {
        top:15px;
    }
    .SlideShowNav a
    {
        padding:8px 10px;
    }
}
@media screen and (max-width:1200px)
{
    .SlideShowNavContainer
    {
        clear:both;
        float:left;
        width:100%;
        position:relative;
        top:auto;
        padding:15px 0;
    }
    .SlideShowNav
    {
        position:relative;
        top:auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width:660px;
        max-width:100%;
        margin:0 auto;
    }
    .SlideShowNav a
    {
        border-radius:20px;
        margin:5px 5px;
    }
}
@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;
    }
}
@media screen and (max-width:991px)
{
}
@media screen and (max-width:500px)
{
    .slideshow_caption_container_outer{position:relative; right:auto; bottom:auto; font-size:14px;}
}
/* END HOMEPAGE SLIDESHOW */

/* Homepage Video */
.hpVideoContainer
{
    width:100%;
    position:relative;
}
.hpVideoScript
{
    display:block;
    width:100%;
    height:0;
    overflow:hidden;
    padding-top:56.25%;
    position:relative;

   /* padding-top:600px;
       padding-top:0; */ /*Max height cap, uncomment to use instead of full height*/
}
.hpVideoContainer iframe
{
    width:100% !important;
    height:100% !important;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;

    /*max-height:600px;*/ /*Max height cap, uncomment to use instead of full height*/
}
@media screen and (max-width:991px)
{
    .hpVideoScript
    {
        padding-top:56.25%;
    }
}
/* End Homepage Video */

/* HOMEPAGE FAST FACTS */
.hp_fastfacts
{
    background:#fff;
}
.hp_fastfacts .flex-container
{
    justify-content:center;
}
.hpStatsSlideItem
{
    width:25%;
}
.hp_fact
{
    padding:30px 15px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.hp_fact_icon
{
    color:#182f57;
    font-size:4.5em;
    margin:0 0 35px;
    line-height:1;
    transition:transform .3s ease;
}
.hp_fact:hover .hp_fact_icon
{
    transform:rotate(-5deg);
}
.hp_fact_title
{
    color:#000;
    font-size:2.25em;
    font-weight:bold;
    margin:0 0 10px;
    padding:0;
    line-height:1;
}
p.hp_fact_desc
{
    padding:0;
    margin:0;
    font-size:1.125em;
    color:#221f1f;
}
.hp_fact img
{
    max-width:100%;
}
.hp_fastfacts .slick-dots
{
    bottom:-60px;
}
@media (max-width:767.9px)
{
    .hp_fact
    {
        padding:30px 0;
    }
    .hp_fact_icon
    {
        font-size:2.813em;
    }
    h2.hp_fact_title
    {
        font-size:1.75em;
    }
    p.hp_fact_desc
    {
        font-size:1em;
    }
}
@media screen and (max-width:480px)
{
    .hp_fact img
    {
        max-width:100%;
        height:auto !important;
    }
}
/* END HOMEPAGE FAST FACTS */

/* HOMEPAGE MISSION & VISION */
.hp_missvis
{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    background-size:cover; /* If you're going to use a background image, you need this for it to cover the whole space! */
    background-repeat:no-repeat; /* also this. */
    position:relative;
    background-image:url(/sysimages/missvis_bg.jpg);
    background-color:black;
}
.hp_missvis::after
{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    background:rgba(35,124,116,0.7);
}
.hp_missvis_text
{
    padding:70px 50px;
    color:#fff;
    z-index:3;
}
h1.hp_missvis_header
{
    font-size:2.25em;
    margin:0 0 30px;
    font-weight:bold;
    letter-spacing:1px;
}
h2.hp_missvis_subheader
{
    font-size:1.250em;
    font-weight:bold;
    margin:0 0 45px;
    line-height:1.3;
}
.hp_missvis_rightimg
{
    min-height:500px;
    background-image:url('/sysimages/missvis_rightimg.jpg');
    background-size:cover;
    background-position:center center;
    z-index:3;
}
.hp_missvis_list
{
    list-style-type:none;
    margin:0;
    padding:0;
}
.hp_missvis_list li
{
    display:flex;
    flex-direction:row;
    align-items:center;
    margin-bottom:40px;
}
.hp_missvis_list li:last-of-type
{
    margin-bottom:0;
}
.hp_missvis_listtitle
{
    font-size:1.500em;
    font-weight:bold;
    width:140px;
}
.hp_missvis_listtext
{
    font-size:1.125em;
    flex:1;
}
@media (max-width:767.9px)
{
    .hp_missvis_list li
    {
        align-items:flex-start;
        flex-direction:column;
    }
    .hp_missvis_listtext
    {
        flex:none;
    }
}
/* END HOMEPAGE MISSION & VISION */

/* HOMEPAGE SOCIAL FEED */
.lnkSkipSocial
{
    position:absolute;
    left:-100vw;
}
.lnkSkipSocial:hover, .lnkSkipSocial:focus
{
    left:auto;
    top:0;
}
.hp_social_feed
{
    position:relative;
    background:white;
}
/* END SOCIAL FEED */

/* HOMEPAGE EVENTS */
.events_slider .slick-track
{
    margin:0 auto;
    display:flex;
    flex-direction:row;
}
.slick-slide.hp_event_slide
{
    padding:15px;
    display:flex;
    align-items:stretch;
    justify-content:stretch;
}
.hp_event
{
    background:#fff;
    border:1px solid #ccc;
    padding:30px 15px;
    width:100%;
}
.hp_event_date
{
    color:#182f57;
    font-size:2.75em;
    display:block;
    margin:0;
    line-height:1;
    font-weight:bold;
}
h2.hp_event_title
{
    color:#0f0f0f;
    margin:30px 0 10px;
    padding:0;
    line-height:1.3;
    font-weight:bold;
    font-size:1.250em;
}
.hp_event_time
{
    display:block;
    color:#182f57;
    font-weight:bold;
    font-size:1em;
    margin:0 0 10px;
}
.hp_event_description
{
    display:block;
    color:#666666;
    font-weight:normal;
    font-size:1em;
    margin:0 0 10px;
}
.hp_event_link
{
    color:#182f57;
    font-weight:bold;
    font-size:0.833em;
}
.hp_events_buttons
{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}
.hp_events_viewall_outer
{
    flex:1;
    display:flex;
    justify-content:flex-end;
    padding:15px;
}
.hp_events_viewall
{
    display:inline-block;
    padding:15px 20px;
    background:#182f57;
    color:#fff;
    font-size:1em;
    text-transform:uppercase;
    font-weight:bold;
    border:1px solid #182f57;
    text-decoration:none;
    line-height:1;
    letter-spacing:2px;
}
.hp_events_viewall:hover,
.hp_events_viewall:focus
{
    background:#fff;
    color:#182f57;
    text-decoration:none;
}
.hp_events_arrows
{
    flex:1;
    padding:15px;
    display:flex;
    flex-direction:row;
}
.hp_event_arrow
{
    display:block;
    border:none;
    background:#FFCD00;
    border:1px solid #FFCD00;
    color:black;
    font-size:1em;
    text-transform:uppercase;
    font-weight:bold;
    padding:15px 20px;
    line-height:1;
    letter-spacing:2px;
}
.hp_event_arrow:first-child
{
    margin-right:2px;
}
.hp_event_arrow:hover
{
    color:#323232;
    background:#fff;
}
.hp_event_arrow:focus
{
    outline:none;
}
.hp_event_arrow.slick-disabled
{
    opacity:.6;
    cursor:default;
}
.hp_event_arrow.slick-disabled:hover
{
    background:#FFEB9B;
    color:black;
}

@media (max-width:549.9px)
{
    .hp_events_buttons
    {
        flex-direction:column-reverse;
    }
    .hp_events_viewall_outer,
    .hp_events_arrows
    {
        flex:none;
        justify-content:center;
        padding:1px 15px;
        width:100%;
    }
    .hp_events_viewall
    {
        flex:1;
        text-align:center;
    }
    .hp_event_arrow 
    {
        flex:1;
    }
}
/* END HOMEPAGE EVENTS */

/* HOMEPAGE OUR SCHOOLS */
.hp_schools
{
    background:#fff;
}
.hp_school_outer
{
    position:relative;
    display:block;
    background:#fff;
    border:1px solid #182f57;
    padding:3px;
    margin:15px 0;
    text-decoration:none;
    text-align:center;
}
.hp_school_overflow
{
    overflow:hidden;
}
.hp_school_inner
{
    display:table;
    width:100%;
    height:0;
    padding-bottom:66%;
    background-size:cover;
    background-position:center center;
    position:relative;
    transition:transform .3s ease;
}
.hp_school_outer:hover .hp_school_inner
{
    transform:scale(1.02) rotate(-0.2deg);
}
.hp_school_hs
{
    background-image:url('/resources/images/schools/hs_bg.jpg');
}
.hp_school_ms
{
    background-image:url('/resources/images/schools/ms_bg.jpg');
}
.hp_school_es
{
    background-image:url('/resources/images/schools/es_bg.jpg');
}
h2.hp_school_title
{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    color:#fff;
    text-transform:uppercase;
    font-size:16px;
    padding:15px 0;
    margin:0;
    border:1px solid #fff;
    background:#182f57;
    line-height:1;
    font-weight:bold;
    width:75%;
    text-align:center;
    letter-spacing:1px;
}
h2.hp_school_title:hover
{
    background:#fff;
    color:#182f57;
    border:1px solid #182f57;
}
@media screen and (max-width:1200px)
{
    .hp_schools .col-sm-6
    {
        margin:24px 0;
    }
}
@media (max-width:991.9px)
{
    .hp_school_es
    {
        background-position:top center;
        padding-bottom:33.33%;
    }
}
@media (max-width:767.9px)
{
    .hp_school_es
    {
        background-position:center center;
        padding-bottom:66.67%;
    }
}

/* END HOMEPAGE OUR SCHOOLS */

/* HP PUBLIC RECORDS TEXT WINDOW */
.hp_publicrecords
{
    background-color:white;
}
.hp_textwindow
{
    width:700px;
    margin:0 auto;
    max-width:100%;
    text-align:center;
}
.hp_text_title
{
}
.hp_text_desc
{

}
/* END PUBLIC RECORDS TEXT WINDOW */

/* responsive container to wrap around embed codes */
.embed-container  
{
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
    height: auto; 
} 
.embed-container iframe, .embed-container object, .embed-container embed 
{ 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}
/* END HOMEPAGE */

.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;
}
#dynamic_nav .slicknav_nav li > a
{
    display:flex;
    flex-direction:row;
    align-items:center;
    color:#3C3C3C;
}
#dynamic_nav .slicknav_nav li > a a
{
    color:#3C3C3C;
}
#dynamic_nav .slicknav_nav a:hover
{
    background:transparent;
    color:#182f57;
}
#dynamic_nav .slicknav_nav li > a a
{
    flex:1;
}
#dynamic_nav .slicknav_nav > li
{
    border-bottom:1px solid #dfdfdf;
}
#dynamic_nav .slicknav_nav > li:first-of-type
{
    border-top:1px solid #dfdfdf;
}
#dynamic_nav .slicknav_nav .slicknav_arrow
{
    margin:0;
    padding:0 10px;
}
@media (min-width:992px)
{
    #dynamic_nav ul.slicknav_nav 
    {
        border-left: 1px solid #efefef;
        border-right: 1px solid #efefef;
        margin-bottom:30px;
    }
    #dynamic_nav .slicknav_menu
    {
        background:transparent;
        padding:0;
    }
    #dynamic_nav .slicknav_nav li > a
    {
        font-size:14px;
        margin:0;
        padding:10px;
    }
    #dynamic_nav .slicknav_nav > li:first-of-type a
    {
        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
    {
        margin:0 0 15px;
    }
    #dynamic_nav .slicknav_menu
    {
        border-radius:5px;
        border:2px solid #dfdfdf
    }
    #dynamic_nav .slicknav_btn
    {
        display:block;
    }
    #dynamic_nav ul.slicknav_nav
    {
        display:block;
    }
    #dynamic_nav .slicknav_btn,
    #dynamic_nav .slicknav_menutxt
    {
        text-shadow:none;
        color:white;
    }
}
/* END DYNAMIC NAV */

/* LINKS AND DOWNLOADS COMPONENTS */
.downloads_component_container,
.links_component_container
{
}
.downloads_list, 
.links_list
{
    display:block;
    margin:0;
    padding:0;
    list-style-type:none;
}
.downloads_list_item,
.links_list_item
{
    display:block;
    margin:10px 0;
    padding:0;
}
.downloads_link,
.links_link
{
    display:inline-flex;
    flex-direction:column;
}
.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:10px 15px;
    margin:15px 0;
    line-height:1;
    background-color:#182f57;
    color:#fff;
}
.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
{
    width:45%;
}
.news_article_imagecontainer img
{
    padding-right:20px;
    display:block;
    margin:0 auto;
    width:100%;
}
.news_article_textcontainer
{
    width:55%;
}
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 */


/* 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:#182f57;
    border:2px solid #182f57;
    padding:5px 10px;
    margin:15px 0 0;
    color:#fff;
    text-align:center;
    display:block;
    width:100%;
}
.archive_filter_button:hover
{
    background:transparent;
    color:#182f57;
}
.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: #182f57;
    -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:#182f57;
    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:#182f57;
}
.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:#182f57;
}
.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 */

/* 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
{
	
	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
{
	
	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;	
}
/* 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;
}
.ui-accordion .ui-accordion-content
{
    padding: 10px !important;
    border-top: 0;
    overflow: auto;
    background: white;
    display: block;
    line-height: 1.6;
    color: #272727;
    font-size: 16px;
}
.ui-helper-reset 
{
    padding:0px !important;
    margin: 0 !important;
}
/* END TEXT WINDOW */

/* EVENTS COMPONENT */
.events_component_container
{
}
.events_topbar
{
    text-align: right;
    padding: 10px 15px;
    margin:0 0 15px;
    line-height: 1;
    background-color: #182f57;
}
.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:#182f57;
    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:15px 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:#182f57;
    color: #fff;
    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, .eventCalendar_selectedDayStyle 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:#182f57; /* 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;
}
.eventCalendar_selectedDayStyle
{
    background:transparent !important;
}
.eventCalendar_selectedDayStyle a
{
    background:#182f57;
    color:#fff !important;
}
/* END EVENTS COMPONENT */

/* 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: #182f57;
}
.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: #182f57;
    border: 2px solid #182f57;
    padding: 5px 10px;
    margin: 15px 0 0;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
}
.mastercalendar_filterbutton:hover
{
    background: transparent;
    color: #182f57;
}
.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 */

/* TEXT WINDOW */
.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;}
.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 */

/* Public User Dashboard */
.DashboardNav
{
    width:100%;
    border:1px solid #C1C1C1;
    padding:11px;
    margin-bottom:5px;
}
/* end dashboard */

