﻿/* Style Variables */
:root
{
    --primary-color: #BF2227;
    --primary-hover: #9B0013;
    --secondary-color: #0028A3;
    --secondary-hover: #000000;
    --tertiary-color: #FFFFFF;
    --tertiary-hover: #E3E3E3;
}

/* GENERAL LAYOUT */
html, body
{
    padding:0;
    margin:0;
    height:100%;
    font-family:'soleto', Sans-Serif;
}
body
{
    line-height:1.6;
    color:#272727;
    font-size:16px;
}

a{text-decoration:none; color:var(--primary-color);}
a:hover {text-decoration: underline;}
a img {border:none;}

h1, h2, h3, h4, h5, h6{line-height:1;}

/* Use this for page headers */
.PageTitleContainer
{
    background: var(--secondary-color);
    padding: 0px 0;
    margin-bottom: 30px;
}
h1.page_header
{
    margin: 0;
    padding: 0;
    padding: 10px 0;
    font-size: 2em;
    color:#FFF;
}

/* Use this for component headers */
h2.component_header
{
    color:#3C3C3C;
    font-size:2em;
    margin-top:0;
    margin-bottom:5px;
    float: left;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

/* Use this for titles inside of components */
/* Ex: Textwindow titles */
h3.component_title
{
    color: var(--secondary-color);
    font-size:2em;
    margin-top:0;
    margin-bottom:5px;
    width: 100%;
    font-weight: 700;
}
.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:10px;
    margin-top:10px;
}

/* Clearfix for component container */
.component_container:after
{
    content:"";
    display:table;
    clear:both;
}
/*Used with some components, such as News. Using padding here may cause uneven sizing of different component types. */
.component_container_inner
{
}
.component_container iframe
{
    max-width:100%;
}

/* 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 */
.topnav
{
    padding:12px 0;
    background: var(--tertiary-color)
}
.slogan
{
    width:100%;
    padding:10px 0;
    text-align:center;
    background-color:#BF2227;
    color:White;
    text-transform:uppercase;
    font-size:1.438em;
    font-family:"prometo", Sans-Serif;
    font-weight:800;
    font-style:italic;
}
.slogan .container-fluid
{
    max-width:700px;
}
.slogan .container-fluid div
{
    padding:0 25px;
    display:inline-block;
}
.slogan a
{
    color:White;
}
nav
{
    width:100%;
    margin-bottom: 0px;
    font-weight:500;
}
nav a
{
    text-decoration:none;
    color:white;
}
nav a:hover{text-decoration:none;}
nav ul
{
    width:100%;
    margin:0 auto;
    list-style:none;
    z-index:9999;
    text-align:center;
    padding:0;
    display:table;
}
nav ul li
{
    position:relative;
    cursor:pointer;
    display:table-cell;
    vertical-align:middle;
}
nav ul li a
{
    display:block;
    font-size: 1em;
    padding:0 10px;
    height:60px;
    line-height:60px;
    font-weight: 500;
    -webkit-transition: width .55s, opacity .1s;
    transition: width .55s, opacity .1s;
    width: 90%;
    color: #333232;
}
nav ul li a:hover
{
    background: var(--tertiary-hover)
}
nav ul li ul
{
    padding:10px;
    position:absolute;
    top:60px;
    left:0;
    width:300px;
    min-width:100%;
    display:none;
    border:none;
    overflow:hidden;
    z-index:9999;
    background:white;
    text-align:left;
    text-transform:none;
    z-index:999;
    font-weight:normal;
    -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);
}
nav ul li ul li{display:block;}
nav ul li ul li a
{
  
    display:block;
    font-weight: 400;
    font-size:0.778em;
    color:Black;
    height:auto;
    line-height:1.6;
    padding:4px;
     border-bottom:3px solid #ffffff;
}
nav ul li ul li a:hover
{
    color:#000;
}

nav ul li:nth-child(1n+6) ul{left: calc(-300px + 100%);}
nav ul li:hover ul{display:block;}

.nav_title
{
    cursor:default;
    font-weight:bold;
    text-align:center;
    border-bottom:2px solid #101010;
}
.nav_title:hover
{
    background:none;
    color:#000;
}
.slicknav_menu, .mobile_nav{display:none;}
.DesktopNav svg{font-size:0.750em;}

@media screen and (max-width:1170px)
{
    nav ul li a
    {
        font-size: 0.9em;
    }
}
@media screen and (max-width:1080px)
{
    nav ul li a
    {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 991px)
{
    #logo {text-align:center;margin:0 auto;width:100%;display:block;}
    #navigation, nav {display:none;}
    .js .slicknav_menu {display:block;}
    .DesktopNav{display:none;}
}
@media screen and (max-width: 650px)
{
    .slogan svg{width:80%;}
}
/* END TOP NAV */

/* HEADER */
header
{
    background: var(--primary-color);
    border-top: 2px solid var(--primary-hover);
    padding:22px 0 30px 0;
    display:none;
}
header a, header a:active, header a:hover, header a:focus{text-decoration:none;}
.HeaderLogo
{
    display:table-cell;
    width:23%;
}
.HeaderLogo svg
{
    width:100%;
    vertical-align:middle;
}
.HeaderSpacer
{
    display:table-cell;
    width:6%;
}
.HeaderTitle
{
    display:table-cell;
    width:71%;
}
.HeaderTitle svg
{
    width:100%;
    vertical-align:middle;
}
header h1
{
    text-decoration:none;
    text-align:center;
    font-weight:normal;
    font-size:3.278em;
    margin:0;
    display:block;
    margin:10px auto 0;
}
header h1 a
{
    color:#fff;
}

header h2
{
    text-align:center;
    font-size:2em;
    text-transform:uppercase;
    font-weight:500;
    margin:0;
    color:#fff;
    letter-spacing:5px;
}
header h3
{
    text-align:center;
    
    text-transform:uppercase;
    font-weight:500;
    padding:0;
    margin:0;
    color:#636363;
}
header hr
{
    height:2px;
    border:none;
    width:48%;
    background:#1ED55F;
    margin:5px auto 10px;
}
.HeaderAddress
{
    text-align:center;
    border:1px solid #1ED55F;
    padding:10px;
    color:#E1E1E1; 
    float:left;
}
.NavSearch
{
    color:White;
    display:inline;
    cursor:pointer;
}
/* Search Styles */
.SearchContainer
{
    background-color:var(--primary-color);
    padding-left: 30px;
    padding-right: 30px;
    position:relative;
    z-index:5;
    width:100%;
}
.SearchDiv
{
    position:relative;
    color:Black;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width:100%;
    padding:0;
    height:0;
    overflow:hidden;
}
.SearchExpanded
{
    top:0;
    height:auto;
    padding:30px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.SearchClose
{
    position:absolute;
    top:0;
    right:0;
    padding:30px;
    color: white;
}
.GoogleSearch input
{
    width: calc(100% - 70px);
    margin-right: 15px;
}
.SearchDiv:before, .SearchDiv:after
{
    content: "";
    display: table;
    clear: both;
}
.SearchDiv input
{
    width: calc(100% - 60px);
    border: none !important;
    outline: none !important;
}
.SearchDiv span svg
{
    color: #777;
    cursor: pointer;
}
.SearchDiv a
{
    padding-left: 0;
}
.SearchDiv svg
{
    color: white;
    width: 24px !important;
}
/* End Search Styles */
@media screen and (max-width:650px)
{
    .slogan{font-size:1em;}
    .slogan .container-fluid div{padding:0 12px;}
}
@media screen and (max-width:430px)
{
    .slogan{font-size:0.7em;}
    .slogan .container-fluid div{padding:0 5px;}
}

/* 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:var(--secondary-color);
    color:#fff;
    padding:35px 0;
    width:100%;
}
.footertext
{
    display:block;
}
footer a
{
    color:White;
    font-weight:bold;
}
.footer_left
{
    float:left;
    width:28%;
}
.footer_right
{
    float:right;
    text-align:right;
    width:59%;
}
.footer_logo
{
}
.footer_logo img
{
    max-width: 100%;
}
.footer_info
{
    margin-top:20px;
}
footer h1
{
    margin:0;
    padding:0;
    font-size:1.5em;
}
.footertext
{
}
.footer_list
{
    margin-top:10px;
}
.footer_list svg
{
    width:90%;
}
.footer_list ul
{
    margin:0;
    float:left;
    padding:0;
    text-transform:uppercase;
    list-style-type:none;
    font-weight:bold;
}
.footer_list ul:first-child{margin:0 40px 0 0;}
.footer_list ul li{margin:10px 0;}
.footer_buttons
{
    margin-top:55px;
}
.social_media_buttons
{
    width:100%;
}
.social_media_buttons svg
{
    color:var(--secondary-color);
    font-size:1.50em;
}
footer a:hover
{
    color:var(--primary-color);
    text-decoration:none;
}
.social_media_buttons img
{
    width:30%;
    display:block;
    float:left;
    margin:1.666%;
    max-width:46px;
}
.SubFooter
{
    padding:15px 0;
    background-color:var(--secondary-hover);
    color:White;
}
.SubFooterCell1
{
    float:left;
    width:39%;
}
.SubFooterCell2
{
    float:left;
    width:21%;
    text-align:center;
}
.SubFooterCell3
{
    float:left;
    width:39%;
}
.OwnershipLabel
{
    color:White;
}
.esvLink
{
    color:White;
    font-weight:normal;
}

/* start ADA button */
.divCompliance
{
    display:inline;
}
.MobileBreak{display:none;}

@media screen and (max-width:991px)
{
    .footer_left, .footer_right{width:100%; text-align:center;}
    .footer_logo{margin:0 auto; width:70%;text-align:center;}
    .footer_list{display:none;}
    .SubFooterCell1, .SubFooterCell2, .SubFooterCell3{width:100%; text-align:center;}
    .esvLink, .divCompliance{margin:0 !important;}
    .MobileBreak{display:inline;}
}
/* END FOOTER */

/* HOMEPAGE SLIDESHOW */
.slideshow_outer_container
{
    width:100%;
    max-height:600px;
}
.slideshow_container
{
    margin:0 !important;
}
.slideshow_slide
{
    position:relative;
    max-height:600px;
}
.slideshow_caption_container_outer
{
    position:absolute;
    bottom:40px;
    float:left;
    left:50%;
    z-index:2;
    display:block;
}
.slideshow_caption_container_inner
{
    background:rgba(29, 29, 29, .85); 
    max-width:625px;
    left:-50%;
    float:left;
    position:relative;
    padding:20px 30px;
    text-align:center;
}
.slideshow_caption_header
{
    color:#fff;
    font-weight:bold;
    font-size:2.571em;
    display:block;
    text-align:center;
    text-transform:uppercase;
}
.slideshow_caption_text
{
    color:#fff; 
    margin-bottom:5px;
    
    display:block;
}
.slideshow_caption_link
{
    color:#25a0ff;
    text-decoration:none;
    font-size:0.929em;
    text-transform:uppercase;
}
.slideshow_image
{
    width:100%;
}
.slick-slide
{
    height:auto;
}
.slick-dots
{
    bottom:-60px;
    color:Black;
}
.slick-dots li button::before
{
    font-size:14px;
    color:var(--secondary-color);
    opacity:1;
   -webkit-text-stroke-width: 0px;
   -webkit-text-stroke-color: white;
}
.slick-dots li.slick-active button:before
{
    opacity:1;
    color:var(--primary-color);
}
.slick-prev
{
    left:-10px;
    z-index:3;
}
.slick-next
{
    right:-10px;
    z-index:3;
}
.slick-prev, .slick-next
{
    background:transparent;
    color:var(--tertiary-color);
    height:24px;
    width:24px;
    line-height:24px;
    font-size:24px;
}
.slick-prev:before
{
    /*content:"❬";*/
    padding-right:5px;
}
.slick-next:before
{
    /*content:"❭";*/
    padding-left:5px;
}
.slick-prev:before, .slick-next:before
{
    font-size: 47px;
    margin-top: 4px;
    color: var(--secondary-color);
    display: block;
}
.slick-prev:focus, .slick-next:focus
{
    opacity:inherit;
}
.slick-prev:hover, .slick-next:hover, .slick-prev:active, .slick-next:active, .slick-prev:focus, .slick-next:focus
{
    color:var(--tertiary-hover);
    height:24px;
    width:24px;
}
.slick-prev:hover
{
    background-color:#0000;
}
.slick-next:hover
{
    background-color:#0000;
}
@media screen and (max-width:991px)
{
    .slideshow_outer_container{margin-top:0 !important;}
}
@media screen and (max-width:650px)
{
    div [src*='filecabinet']{max-width:100% !important;height: auto !important;}
}
/* END HOMEPAGE SLIDESHOW */

/* HOMEPAGE NEWS */
.homepage_news_container
{
    background-color:#D6D6D6;
    padding:50px 0;
}
.news_slider .slick-slide
{
    padding-left:15px;
    padding-right:15px;
}
.homepage_news_photo
{
}
.homepage_newsArticle
{
    background:#fff;
    padding:30px;
}
.homepage_newscomponent_mainlink
{
}
.homepage_newscomponent_maintext
{
}
.homepage_news_readmore
{
}
.homepage_news_thumbimage
{
    width:100%;
    margin:0 auto;
}
/* Uncomment to load News Photos as responsive background image on Panel instead of Image. Make sure to uncomment code on homepage too. */
/*
.homepage_news_photo
{
    height:0;
    overflow-y:hidden;
    padding-bottom:68.75%;
}
.homepage_newscomponent_thumbimage
{
    width:100%;
    background-repeat:no-repeat;
    background-size:100%;
    background-position:center center;
    padding-bottom:68.75%;
    transition:0.3s all ease-out;
}
.homepage_newscomponent_thumbimage:hover
{
    background-size:120%;
}
.homepage_newscomponent_mainlink
{
    color:#000;
    font-size:20px;
    font-weight:bold;
}
.homepage_news_readmore
{
    color:#4A1E7D;
    font-weight:800;
    margin-top:10px;
}
*/
/* END HOMEPAGE NEWS */

/* HOMEPAGE */
.hpTitle
{
    color:var(--secondary-color);
    font-size:1.875em;
    font-family:"prometo", Sans-Serif;
    font-weight:800;
    float:left;
    text-transform:uppercase;
}
.hpLink
{
    color:var(--secondary-color);
    font-size:1em;
    font-weight:bold;
    padding:8px 15px 5px;
    float:right;
    background-color:var(--tertiary-color);
    border-radius:3px;
    transition: background 0.5s, color 0.5s;
    text-transform:uppercase;
}
.hpLink:hover
{
    background: var(--primary-hover);
    color:White;
    text-decoration: none;
}
.hpDiv
{
    border-top:solid 8px #BF2227;
    border-bottom:solid 8px #BF2227;
    background-color:#0028A3;
    padding:25px 0;
    text-align:center;
    vertical-align:middle;
}
.hpDiv a
{
    color:White;
    font-weight:800;
    font-style:italic;
    font-family:'prometo', Sans-Serif;
    font-size:1.875em;
    transition:all ease-out 0.3s;
}
.hpDiv svg
{
    color:#BFBFBF;
    font-size:1.6em;
    transition:all ease-out 0.3s;
}
.hpDiv a:hover
{
    color:var(--primary-color);
    text-decoration:none;
}
.hpDiv a:hover svg
{
    color:var(--primary-color);
}
.homepage_text_container
{
    text-align:center;
    padding:50px 0;
}
.homepage_textwindow_title
{
    margin:0;
    font-weight:bold;
    font-family:'prometo', Sans-Serif;
    font-size:1em;
    text-transform:uppercase;
    color:#0028A3;
    overflow:hidden;
    margin-bottom:30px;
}
.homepage_textwindow_title span
{
    position:relative;
    display:inline-block;
}
.homepage_textwindow_title span:before, .homepage_textwindow_title span:after
{
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 1px solid;
    border-bottom-color:var(--primary-color);
    width: 100px; /* half of limiter*/
    margin: 0 20px;
}
.homepage_textwindow_title span:before
{
    left:100%;
}
.homepage_textwindow_title span:after
{
    right:100%;
}
.homepage_textwindow_text
{
    font-weight:500;
    font-size:1.5em;
    color:#424A51;
}
/*Homepage events now use default event component styles for consistency*/
.homepage_events_container
{
    background:url(../sysimages/hpBG.png) no-repeat center;
    background-size:cover;
    background-color:#0028A3;
    padding:50px 0;
}
.homepage_events_container .hpTitle
{
    color:White;
}
.events_slider
{
    float:left; 
    width:100%; 
    margin-top:30px;
}
.events_slider .slick-slide
{
    padding-left:15px;
    padding-right:15px;
}
.events_slider .eventcomponent_leftcontainer
{
    float:left;
    display:block;
    width:100%;
    margin-bottom:25px;
}
.events_slider .eventcomponent_datecontainer
{
    float:none;
    margin:2px auto 0;
    padding-top:20px;
    width:126px;
    height:126px;
    background-color:var(--tertiary-color);
    border:solid 2px var(--secondary-color);
    border-radius:50%;
    box-shadow:0 0 0 2px var(--tertiary-color);
}
.events_slider .eventcomponent_month
{
    font-family:'prometo', Sans-Serif;
    font-size:1.750em;
    font-weight:800;
    font-style:italic;
    color:var(--secondary-color);
}
.events_slider .eventcomponent_date
{
    font-family:'prometo', Sans-Serif;
    font-size:3.250em;
    font-weight:800;
    font-style:italic;
    color:var(--primary-color);
}
.events_slider .eventcomponent_textcontainer
{
    float:left;
    clear:left;
    display:block;
    width:100%;
    text-align:center;
}
.events_slider .eventcomponent_linktext
{
    display:block;
    font-size:1em;
    line-height:1.50em;
    font-weight:800;
    color:White;
    margin-bottom:5px;
}
.events_slider .eventcomponent_maintext
{
    display:block;
    font-weight:500;
    font-size:0.875em;
    line-height:2.143em;
    color:White;
    margin-bottom:5px;
}
.events_slider .eventcomponent_datetext
{
    font-weight:500;
    font-size:0.875em;
    line-height:2.143em;
    color:White;
}
/* End homepage events styles */

.homepage_cta_container
{
    background-color:White;
}
.ProgramsImages
{
    display:table;
    width: 100%;
    background-color: Black;
    color: White;
    height: 100%;
    border:solid 1px white;
    background-color:rgba(0, 0, 0, 0.6);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-blend-mode: multiply;
    padding:0 10px;
    text-align: center;
    vertical-align:middle;
    float: left;
    transition: all 0.5s ease-out;
    font-family:'prometo', Sans-Serif;
    font-size: 1.875em;
    font-weight:800;
    text-transform:uppercase;
}
.ProgramsLink
{
    display:table-cell;
    height: 100%;
    vertical-align:middle;
}
.ProgramsImages:hover
{
    text-shadow:0 0 5px rgba(0, 0, 0, .5);
    background-size: 110%;
    background-color:white !important;
}
.image_row
{
    width: 100%;
    display: block;
}
.image_row a
{
    float: left;
    width: calc(100% / 3);
    display: block;
    height:359px;
}

/* 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%; 
}
@media screen and (max-width:1310px)
{
    .image_row a{height:259px;}
}
@media screen and (max-width:991px)
{
    .HPcalendar
    {
        display:none;
    }
    .hpDiv a{margin-left:0 !important; display:block; margin-bottom:20px;}
    .hpDiv a:last-child{margin-bottom:0;}
    .ProgramsImages{font-size:1.5em;}
    .image_row a{height:200px;}
}
@media screen and (max-width:730px)
{
    .ProgramsImages{font-size:1.4em;}
    .image_row a{height:160px;}
}
@media screen and (max-width:610px)
{
    .ProgramsImages{font-size:1.3em;}
    .image_row a{height:120px;}
}
@media screen and (max-width:520px)
{
    .homepage_events_container, .homepage_news_container{text-align:center;}
    .hpTitle{float:none; margin-bottom:20px;}
    .hpLink{float:none;}
}
@media screen and (max-width:440px)
{
    .ProgramsImages{font-size:1.2em;}
    .image_row a{height:90px;}
}
/* 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:var(--primary-color);
}
#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:#3C3C3C;
    }
}
/* END DYNAMIC NAV */

/* CSS TOUTS, ADDS STYLES TO TOUTS, IMAGE HIDDEN IN CONTROL */

.ToutButton
{
    background-color:#980B1A;
    border-radius:6px;
    padding:10px 15px;
    font-size:1.286em;
    color:White;
    font-weight:bold;
    display:block;
    width:100%;
    margin-bottom:5px;
    border-bottom:1px solid Black;
}
.ToutButton:hover
{
    background-color:Black;
    text-decoration:none;
}

/* END CSS TOUTS * /

/* LINKS AND DOWNLOADS COMPONENTS */
.linksList
{
    list-style:none;
    margin:0;
    padding:0;
}
.linksList h2
{
    margin: 5px 0 0 0;
}
.liLinkTitle
{
    display:block;
    margin-top:0;
}
.linksList a
{
    display:block;
}
.liLinkDesc
{
    font-size:11px;
}

.linksList li a
{
    text-decoration:none;
}
.linksList li a:hover
{
    text-decoration:underline;
}
/* END LINKS AND DOWNLOADS COMPONENTS */

/* NEWS COMPONENT */
.newscomponent_item
{
    padding:20px 0;
    margin:0;
    border-bottom:1px solid #ededed;
    width:100%;
}
.newscomponent_item:last-child
{
    border-bottom:none;
}
.newscomponent_imagecontainer
{
    vertical-align:top;
    padding-right:20px;
    text-align: left;
    vertical-align: middle;
    line-height: 1;
    float:left;
}
.newscomponent_imagecontainer img
{
    width:100%;
    max-width:400px !important;
    margin-bottom:8px;
}
.newscomponent_archivelink{float:right;}
.newscomponent_textcontainer
{
    vertical-align:middle;
}
.newscomponent_textcontainer span
{
    display:block;
    font-size:1.071em;
}
.newscomponent_item h3, .newscomponent_item h3 a
{
    margin-top:0;
}
.newscomponent_readmore, .newscomponent_readmore:hover
{
    font-size: 0.857em;
    color:#000;
    font-weight:bold;
    text-transform:uppercase;
    float:right;
    margin-top:20px;
}
.ArticleImage
{
    padding-left: 0;
	padding-right: 8px;
	text-align: left;
	float: left;
}

@media screen and (max-width:670px)
{
    .newscomponent_imagecontainer{width:100%; text-align:left; margin-bottom:20px;}
    .newscomponent_item{text-align:left; margin-bottom:30px;}
}
@media screen and (max-width:400px)
{
    .newscomponent_item{display:block;}
    .newscomponent_imagecontainer
    {
        display:block;
        padding:0 0 12px;
    }
    .newscomponent_imagecontainer img
    {
        margin:0 auto;
        display:block;
        width:100%;
    }
    .newscomponent_textcontainer{display:block;}
}
/* END NEWS COMPONENT */

/* VIDEO COMPONENT */
video
{
    max-width:100%;
}
.embed_container h3
{
    cursor:pointer;
    font-size:0.857em;
    color:#313131;
    text-decoration:none;
    margin-top:0px;
    margin-bottom:0px;
}
.embed_container div
{
    height:0;
    overflow:hidden;
    position:relative;
}
.embed_container div dt
{
    padding:5px;
    margin-bottom:5px;
    border:1px solid #313131;
}
.embed_container dt
{
    font-size:0.714em;
    color:#0041B5;
    text-decoration:none;
}
/* 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: #3C3C3C;
font-size: 2em;
margin-top: 0;
float: left;
display: inline-block;
width: 100%;
font-weight: 700;
}
.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;	
}

/* MASTER CALENDAR */
.mastercalendar_monthly_header
{
    text-align:center;
    background:#efefef;
    border:1px solid #ddd;
    border-radius:5px;
    padding:10px 15px;
    margin-bottom:10px;
}
.mastercalendar_note 
{
    margin-bottom:10px;
}
.mastercalendar_filtercontainer
{
    margin:0 0 10px;
}
.mastercalendar_filterbar
{
    padding:10px 15px;
    background:#efefef;
    border:1px solid #ddd;
    margin-bottom:10px;
    border-radius:5px;
}
.mastercalendar_filterpanel
{
    padding:10px 15px;
    background:#efefef;
    border:1px solid #ddd;
    margin-bottom:10px;
    border-radius:5px;
}
.mastercalendar_dailyitem
{
    padding:10px;
}
.mastercalendar_dailyitem:nth-child(odd)
{
    background:#dedede;
}
.mastercalendar_week_daycontainer
{
    padding:5px;
    margin:0 0 5px;
    background:#dedede;
}
.mastercalendar_week_daycontainer h3
{
    text-align:center;
    padding:5px 0;
    margin:0;
    font-weight:normal;
}
.mastercalendar_week_eventcontainer
{
    padding:10px;
    background:#fafafa;
    margin:5px 0 0;
}
.mastercalendar_week_eventcontainer h4
{
    
}
.mastercalendar_month_calendar
{
    table-layout:fixed;
    border-collapse:collapse;
    min-width: 100%;
}
.mastercalendar_month_calendar td, .mastercalendar_month_calendar th
{
    padding:5px;
    border:1px solid #dddddd;
    vertical-align:top;
    height:100px;
    width:14%;
}
.mastercalendar_month_daynum
{
    display:block;
    text-align:right;
    margin:0 0 5px;
    line-height:1;
    font-weight:bold;
}
.mastercalendar_month_dayitem
{
    font-size:0.857em;
    margin:0 0 10px;
}
.mastercalendar_month_greyedday
{
    background:#efefef;
}
.mastercalendar_rssfeed
{
    width:100%;
    padding: 5px 0 0;
    text-align: center;
    background:white;
    max-width:300px;
    margin:0 auto 10px;
    border-radius:5px;
    display:block;
}
/* END MASTER CALENDAR */

/* LOGIN FORMS */
.login_form
{
    width:50%;
}

.login_form label
{
    display:table;
    table-layout:fixed;
    width:100%;
    margin-bottom:5px;
}
.login_form label span
{
    display:table-cell;
    text-align:right;
    padding-right:5px;
}
.login_form label input
{
    display:table-cell;
    width:100%;
}
.login_form input[type="submit"]
{
    width:50%;
    float:right;
}
/* END LOGIN FORMS */

/* TEXT WINDOW */
.imagealign_left
{
    float:left;
    padding:0 1em 5px 0;
}
.imagealign_center
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.imagealign_right
{
    float:right;
    padding:0 0 5px 1em;
}
.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 */
.eventcomponent_item
{
    padding:13px 0;
    display:table;
    border-bottom:1px solid #ededed;
    width:100%;
    margin:0 !important;
}
.eventcomponent_item:first-child
{
    padding-top:20px;
}
.eventcomponent_item:last-child
{
    border-bottom:none;
}
.eventcomponent_leftcontainer
{
    display:table-cell;
    vertical-align:middle;
    width:83px;
}
.eventcomponent_datecontainer
{
    float:left;
    text-align:center;
    background:var(--primary-color);
    padding:8px 0px;
    line-height:1;
    font-weight:bold;
    width:64px;
    height:64px;
}
.eventcomponent_datecontainer_bottom
{
    background-color:White;
    width:100%;
    height:32px;
    padding-top:5px;
    margin-top:3px;
}
.eventcomponent_month
{
    color:#fff;
    text-transform:uppercase;
    font-size:1.286em;
}
.eventcomponent_date
{
    color:Black;
    font-size:1.286em;
}
.eventcomponent_textcontainer
{
    display:table-cell;
    vertical-align:middle;
}
.eventcomponent_textcontainer h3
{
    
    margin-top:0;
    margin-bottom:5px;
}
.eventcomponent_linktext
{
    font-weight:700;
    line-height:1.2;
    
}
.eventcomponent_maintext
{
    color:#000000;
    
    line-height:1.2;
}
.eventcomponent_datetext
{
    font-size:0.929em;
    color:#3A3A3A;
}
.eventcomponent_viewall
{
    font-size:0.929em;
    text-align:center;
    color:#25a0ff;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:bold
}
.eventCalendar, .weeklyEventCalendar
{
    width:100%;
    
    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;
    
}
.eventCalendar a{text-decoration:none !important;}
.eventCalendar_titleStyle /* Month and Year Style */
{
    background-color:var(--primary-color);
    color: #fff;
    border:none;
    font-size:1.429em;
    font-weight:bold;
}
td[style="background-color:Silver;"]
{
    background: #0000 !imortant;
    padding: 0 !important;
}
.eventCalendar_titleStyle td
{
    padding:10px 0;
}
.eventCalendar_nextPrevStyle a
{
    color:#fff !important;
    text-decoration:none !important;
    font-size:0.750em;
    text-align:center;
    padding:0 25px;
    margin-top:-2px;
}
.eventCalendar_nextPrevStyle:last-child a
{
    padding-left:0;
}
.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_dayStyle a
{
    background-color:none;
    color:inherit !important;
    border-radius:50%;
}
.eventCalendar_todayDayStyle a
{
    color:#fff !important;
    font-weight:bold;
    background-color:var(--secondary-color);
    border-radius:50%;
}
.eventCalendar_otherMonthDayStyle a /* Other Month is hidden on this site */
{
    background:transparent;
    color:#BCBCBC !important;
    border-radius:50%;
}
.eventCalendar_dayStyle:hover a, .eventCalendar_otherMonthDayStyle:hover a, .eventCalendar_todayDayStyle:hover a
{
    background-color:var(--primary-color); /* Hover Color */
    color:#fff !important;
}
.eventCalendar_dayStyle, .eventCalendar_todayDayStyle
{
    padding:5px 0;
}
.eventCalendar tr:not(:first-child) td:first-child, .eventCalendar th td:first-child{padding-left:10px;}
.eventCalendar tr:not(:first-child) td:last-child, .eventCalendar th td:last-child{padding-right:10px;}
.eventCalendar tr:last-child td{padding-bottom:10px;}
.eventCalendarWeekly_otherMonthDayStyle
{
    padding: 5px 0;
    background:#ddd !important;
}
.eventCalendarWeekly_otherMonthDayStyle a
{
    width:24px;
    height:24px;
    line-height:24px;
    padding:0 !important;
    margin:0;
}
@media screen and (max-width:640px)
{
    .eventcomponent_leftcontainer{display:block; width:100%; float:left;}
    .eventcomponent_textcontainer{display:block; width:100%; float:left; clear:left;}
    .eventcomponent_datecontainer{float:none; margin:0 auto 10px;}
}
/* END EVENTS COMPONENT */

.configs
{
    font-weight: bold;
    font-size: 1.286em;
}
.cblAreas
{
    font-weight: normal;
    font-size: 0.714em; 
    color: #333333;
}
.cblAreas tr td
{
    width:33%;
}

/* Archive News */
.ddl_buildings
{
    width:210px;
}
.filterTitle
{
    font-weight: bold;
    font-size: 0.929em;
    color: #333333;
    padding:10px 0 5px 0;
}
.filterContainer
{
    width:225px;
    float:left;
    background-color:#f3f3f3;
    padding:10px 10px 30px 10px; 
    margin-bottom:10px;
    border:solid 1px black;
}
.pagingMenu
{
    padding:5px 5px 10px 5px;
    
    font-weight:bold;
    background-color:#f3f3f3;
    border:solid 1px black;
    margin-bottom:10px;
    overflow:hidden;
}
.monthDiv
{
    margin:5px 5px 15px 5px;
    padding:5px;
    background-color:#f3f3f3;	
    display:none;
    font-size:0.857em;
    border:solid 1px black;
}
.altNewsItem
{
    background-color:#f3f3f3;
}
.monthTitle
{
    margin:5px;
    padding:5px;
    font-weight:bold;
}
/* End Archive News */

/* TEXT WINDOW */

/* Text Window Dropdown */
.textWindow {display:block;}
.ui-accordion .ui-accordion-icons {border-radius:0 !important;}
.ui-widget-content a {color:#2877FA !important}
.ui-widget-content {color:#666666 !important;line-height:22px !important;}
.ui-accordion h4.ui-accordion-header {margin:0;background:#F3F3F3;color:Black; font-weight:normal; padding:15px 40px;}
/* Text Window Dropdown */
.bullet {list-style:none;}
.DynamicNav ul li ul li {list-style-type: none;}
ul.bullet li > figure {border-radius: 100%;color: #fff;display: inline-block;float: left;font-size: 17px;font-weight: 700;height: 45px;margin: -5px 10px 0 0;padding: 8px 0 8px 0;text-align: center;width: 45px;background: #231f20;}
.imagealign_left
{
float:left;
margin:0 1em 1px 0;
border:1px solid black;
}
.imagealign_center
{
display: block;
margin-left: auto;
margin-right: auto;
margin-top:10px;
margin-bottom:20px;
}
.imagealign_right
{
float:right;
padding:0 0 5px 1em;
}
/* END TEXT WINDOW */

/* LIGHTBOX */
.wrap {
    overflow: hidden;
    margin: 10px;
}
.box {
    float: left;
    position: relative;
    width: 20%;
    padding-bottom: 20%;
}
.boxInner {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    overflow: hidden;
}
.boxInner img {
    width: 100%;
}
.boxInner .titleBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: -200px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
body .boxInner:hover .titleBox, body.touch .boxInner.touchFocus .titleBox {
    margin-bottom: 0;
}
@media only screen and (max-width : 480px) {
    /* Smartphone view: 1 tile */
    .box {
        width: 100%;
        padding-bottom: 100%;
    }
}
@media only screen and (max-width : 650px) and (min-width : 481px) {
    /* Tablet view: 2 tiles */
    .box {
        width: 50%;
        padding-bottom: 50%;
    }
}
@media only screen and (max-width : 1050px) and (min-width : 651px) {
    /* Small desktop / ipad view: 3 tiles */
    .box {
        width: 33.3%;
        padding-bottom: 33.3%;
    }
}
@media only screen and (max-width : 1290px) and (min-width : 1051px) {
    /* Medium desktop: 4 tiles */
    .box {
        width: 25%;
        padding-bottom: 25%;
    }
}
/* END LIGHTBOX */


/*Public User Dashboard */
.DashboardNav
{
    width:100%;
    border:1px solid #C1C1C1;
    padding:11px;
    margin-bottom:5px;
}
/* end dashboard */

/* Hover Styles Start*/

.CssGrow
{
    transition: transform 0.5s;
}
.CssGrow:hover
{
    transform: scale(1.15);
}
.CssShrink
{
    transition: transform 0.5s;
}
.CssShrink:hover
{
    transform: scale(0.85);
}
.CssSkew
{
    transition: transform 0.5s;
}
.CssSkew:hover
{
    transform: skew(-10deg);
}
.CssSkewForward
{
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}
.CssSkewForward:hover
{
    transform: skew(-10deg) perspective(1px) translateZ(0);
}
.CssSkewBackward
{
    transition: transform 0.5s;
    transform: skew(0deg) perspective(1px) translateZ(0);
    transform-origin: 0 100%;
}
.CssSkewBackward:hover
{
    transform: skew(-10deg) perspective(1px) translateZ(0);
}
.CssFloat
{
    transition: transform 0.5s;
}
.CssFloat:hover
{
    transform: translateY(-8px);
}
.CssSink
{
    transition: transform 0.5s;
}
.CssSink:hover
{
    transform: translateY(8px);
}
.CssForward
{
    transition: transform 0.5s;
}
.CssForward:hover
{
    transform: translateX(8px);
}
.CssBackward
{
    transition: transform 0.5s;
}
.CssBackward:hover
{
    transform: translateX(-8px);
}
.CssPop:hover
{
    -webkit-animation-name: CssPop; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    -webkit-animation-direction: alternate;
    animation-name: CssPop;
    animation-duration: 0.5s;
    animation-direction: alternate;
}
@-webkit-keyframes CssPop {
    0%   {transform: scale(1);}
    50% {transform: scale(1.15);}
    100%   {transform: scale(1);}
}

/* Standard syntax */
@keyframes CssPop {
    0%   {transform: scale(1);}
    50% {transform: scale(1.15);}
    100%   {transform: scale(1);}
}
.CssPush:hover
{
    -webkit-animation-name: CssPush; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    -webkit-animation-direction: alternate;
    animation-name: CssPush;
    animation-duration: 0.5s;
    animation-direction: alternate;
}
@-webkit-keyframes CssPush {
    0%   {transform: scale(1);}
    50% {transform: scale(0.85);}
    100%   {transform: scale(1);}
}

/* Standard syntax */
@keyframes CssPush {
    0%   {transform: scale(1);}
    50% {transform: scale(0.85);}
    100%   {transform: scale(1);}
}
.CssPulse:hover
{
    -webkit-animation-name: CssPulse; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.75s; /* Safari 4.0 - 8.0 */
    webkit-animation-iteration-count: 500;
    -webkit-animation-timing-function: linear;
    animation-name: CssPulse;
    animation-duration: 0.75s;
    animation-iteration-count: 500;
    animation-timing-function: linear;
}
@-webkit-keyframes CssPulse {
    25% {transform: scale(1.1);}
    75% {transform: scale(0.9);}
}

/* Standard syntax */
@keyframes CssPulse {
    25% {transform: scale(1.1);}
    75% {transform: scale(0.9);}
}

/* End Hover Styles*/

.component_container.clearfix{float:left;}
@media screen and (max-width:991px)
{
    .clearfix{width:100%;}
}