@import url("../../parts/styles_resp/global.css");

html { height: 100%; }
html * { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { padding-left: 1.5em; }
hr { clear: both; }
p { margin: 0 0 20px; }
body {
    font-family: "Poppins", sans-serif;
    font-family: var(--designfont);
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: #fff;

    line-height: 28px;
    letter-spacing: 0.025rem;
}

body.home, body.inner {
    height: 100%;
    background: #fff;
}

.allContainer {
    padding: 0;
    margin: 0;
    zoom: 1;
}

/* SET VARIABLES FIRST */
:root {

    /* Colors */
    --mainColorText: #000;
    --mainColorBG: #f7f7f7;
    --secondaryColorText: #000;
    --secondaryColorBG: #f2f2f2;
    --iconColor: #575757;
    

    /* Nav */
    --mainNavBG: #0e024c;
    --mainNavText: #fff;


    /* Fonts */
    --bodyColor: #000000;
    --designfont: "Poppins", sans-serif;
    --buttonfont: 600 18px "Poppins", sans-serif;


    /* Headings */
    --headerFont: "Poppins", sans-serif;
    --headerColor: #0e024c;

    /* Links */
    --link: #df111b;
    --linkHover: #df111b;

    /* Accents */
    --buttonborder: solid 2px #000;
    --dividerBorder: solid 1px #ccc;
    --buttonpadding: 11px 40px;
    

    /* Mobile nav */
    --mobiletopbarbg: #fff;
    --mobiletopbarcolor: #000;
    --mobileDropBG: #fff;
    --mobileLinkColor: #000;
    --mobileSubLinkColor: #000;
    --mobileSubSubLinkColor: #000;
    --mobileBorder: solid 1px #ccc;
    --mobileDropShadow: block; /* None or block */
    --mobileIconWeight: 400; /* Light 100 - Regular: 400 - Solid: 900 */
    --mobileIconColor: #000;
    

    /* Notifications */
    --notificationLowBG: #0e024c;
    --notificationLowColor: #fff;
    --notificationLowMoreBG: none;
    --notificationLowMoreColor: #fff;

    --notificationMediumBG: #fdb92e;
    --notificationMediumColor: #000;
    --notificationMediumMoreBG: none;
    --notificationMediumMoreColor: #000;

    --notificationHighBG: #df111b;
    --notificationHighColor: #fff;
    --notificationHighMoreBG: none;
    --notificationHighMoreColor: #fff;

    /* Home Slider Height */
    --homeBannerHeight: 715px; /* Desktop Height */
    --homeBannerHeightMob: 500px; /* Mobile Height */

    /* Inner Image + Slider Height */
    --innerBannerHeight: 380px; /* Desktop Height */
    --innerBannerHeightMob: 380px; /* Mobile Height */

    /* Slider Overlay */
    --homeCarouselOverlay: rgba(0, 0, 0, 0.4);

}

/* ------------- ALERTS ------------- */
.alert { 
    background: var(--notificationLowBG); 
    color: var(--notificationLowColor); 
    font-weight: 500; 
    line-height: 25px;
    gap: 10px; 
}

.alerts .alert a { 
    color: var(--notificationLowColor);	
    text-decoration: underline; 

}
.alerts .alert a:focus { outline: 1px dashed var(--notificationLowColor); }
.alerts .alert button.dialogbutton { 
    background: var(--notificationLowMoreBG); 
    color: var(--notificationLowMoreColor);
     width: fit-content; 
     min-width: 260px; 
     text-transform: uppercase;
     font-weight: 600;
     letter-spacing: .075rem;
     border: 2px solid #fff;
     border-radius: 27.5px;
     font-size: 16px;
     padding: 5px 30px;
     margin: 0 20px;
    transition: all 300ms ease;
    }

.alert.priority2 { background: var(--notificationMediumBG); color: var(--notificationMediumColor); }
.alerts .alert.priority2 a { color: var(--notificationMediumColor);	text-decoration: underline; }
.alerts .alert.priority2 a:focus { outline: 1px dashed var(--notificationMediumColor); }
.alerts .alert.priority2 button.dialogbutton { 
    background: var(--notificationMediumMoreBG); 
    color: var(--notificationMediumMoreColor);
    border: 2px solid #000;
}

.alert.priority3 { background: var(--notificationHighBG); color: var(--notificationHighColor); }
.alerts .alert.priority3 a { color: var(--notificationHighColor);	text-decoration: underline; }
.alerts .alert.priority3 a:focus { outline: 1px dashed var(--notificationHighColor); }
.alerts .alert.priority3 button.dialogbutton { background: var(--notificationHighMoreBG); color: var(--notificationHighMoreColor);}

button.dialogbutton { font-family: var(--designfont); }

.alertcontainer { z-index: 11; }

.alertcontainer button.closealerts { 
    font-family: var(--designfont); 
    text-transform: uppercase;
    letter-spacing: .075rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.alertcontainer button.closealerts span { 
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px),  #fff 2px);
    background-image: -ms-linear-gradient(transparent 95%, #fff 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
}

.alertcontainer button.closealerts:hover span { 
    background-size: 100% 96%;
}

.alertcontainer button.closealerts.priority1,
.alertcontainer .controls button.priority1 {
    color: var(--notificationLowColor);
}

.alertcontainer button.closealerts.priority2,
.alertcontainer .controls.priority2 button {
    color: var(--notificationMediumColor);
}

.alertcontainer button.closealerts.priority3,
.alertcontainer .controls.priority3 button {
    color: var(--notificationHighColor);
}

/* .alerts .alert button.dialogbutton:hover { 
    text-decoration: none;
    background: #df111b;
    color: #ffffff;
    border-color: #df111b;
}

.alerts .alert.priority3 button.dialogbutton:hover { 
    text-decoration: none;
    color: #df111b;
    background: #ffffff;
    border-color: #fff;
} */

.alerts .alert button.dialogbutton {
    position: relative;
}

.alerts .alert button.dialogbutton:hover::after {
    transform: scaleX(1);
}

.alerts .alert button.dialogbutton::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 179px;
    height: 2px;
    background-color: currentColor;
    margin-left: -90.5px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .5s cubic-bezier(.215, .61, .355, 1);
}


a#skipLink { top: -43px; }

.grecaptcha-badge {
    bottom: 200px !important;
}


a#skipLink { top: -43px; }

#backTop,
.galleryBox .arrowleft,
.galleryBox .arrowright,
.galleryBox .arrowpause,
.galleryBox .arrowplay {
    font-size: 16px;
    color: #000;
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #fff;
    border: 2px solid #000;
    transition: all 300ms ease;
    z-index: 2;
}

#backTop { 
    width: 20px; 
    height: 20px; 
    padding: 2px 10px 18px 10px;
    bottom: 50px !important;
    right: 20px !important;
}

#backTop:hover,
.galleryBox .arrowleft:hover,
.galleryBox .arrowright:hover,
.galleryBox .arrowpause:hover,
.galleryBox .arrowplay:hover {
    background: #df111b;
    color: #fff;
    border-color: #df111b;
}

.galleryBox .arrowleft,
.galleryBox .arrowright,
.galleryBox .arrowpause,
.galleryBox .arrowplay { margin: 0; }

.galleryBox .thumbnails .messages { margin-right: 15px; }

.desktoponly { display: none; }
.extraTopBorder {
    display: none;
    height: 10px;
    font-size: 0;
}

.notifications {
    position: relative;
    background: var(--notificationbg);
    padding: 5px;
    color: #fff;
    display: none;
    text-align: center;
    z-index: 12;
}
.notifications .notification {
    padding: 5px;
    text-align: center;
    font-size: 10pt;
    color: var(--notificationcolor);
    font-family: var(--designfont);
    font-weight: normal;
}
.notifications .notification p { padding: 0; margin: 0; }

.notifications a.closenotification {
    float: right;
    cursor: pointer;
    padding: 5px 15px;
    color: #fff;
    font-size: 20px;
}

.notifications a.closenotification i {
    font-weight: var(--mobileIconWeight);
}

.notifications a, .notifications a:hover {
    color: var(--notificationcolor);
    text-decoration: underline;
}

.notifications a:focus { outline: 1px dashed white; }


.mainbox { position: relative; display: block; }
.widthContainer {
    position: relative;
    min-width: 250px;
    /* max-width: 2000px; */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.contentBG, .editorContentMain {
    color: #000;
    background: white;
}

.inner .contentBG {
    margin-top: 0px;
}

.searchSocial {
    display: none;
}


/* Uncomment if the design doesn't have a caption on home page - Hidden H1 Tag */
.home-h1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.spacer, .spacer2 { visibility: hidden; }
.spacer2 { display: none; }
.noscroll { overflow: hidden; }
.topbar {
    z-index: 10;
    position: sticky;
    top: 0;
    max-height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
    background: var(--mobiletopbarbg);
}
.topbar.scroll { overflow-y: auto; }
.topbar nav.table>ul { display: table; width: 100%; }

.topbar h1 { margin: 0; padding: 0; }
.topbar .title {
    display: inline-block;
    font-family: var(--designfont);
    color: var(--headerColor);
    width: 100%;
}
.topbar .title img {
    max-height: 70px;
    margin: 0;
    max-width: 95%;
}
nav.table>ul>li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.navIcon, .searchIcon { cursor: pointer; }
.navDrop { display: none; padding: 10px 40px 20px; }
.searchDrop { display: none; padding: 20px 40px; }
nav.top.block ul { 
    border-radius: 0; 
    padding: 0 40px;
    display: inline-flex;
    width: 100%;
}

nav.top.block ul > li {
    padding: 10px 20px 5px;
}

nav.top.block ul > li:first-of-type {
    width: 100%;
    padding: 0;
}

nav.top.block ul > li:last-of-type {
    padding-right: 0;
}


nav.top.block li a {
    padding: 0;
    font-size: 16pt;
    color: var(--mobiletopbarcolor);
    text-align: center;
    background-image: linear-gradient(transparent calc(100% - 2px), #df111b 2px);
}



nav.top.block li .titlewrap a {
    text-align: left;
    background-size: 0;
}

nav.top.block li a > div { 
    font-size: 14px; 
    letter-spacing: .075rem;
    display: block; 
    text-transform: uppercase; 
}

nav.top.block li a:hover > div { color: #df111b; }

nav.top.block li:last-child { border-right: none; }
nav.top.block li a {}
nav.top.block li a > * {
    display: inline-block;
    vertical-align: middle;
}

nav.top.block li a i {
    color: var(--mobileIconColor);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 3px;
}

nav.top.block li:first-child a {
    border-left: none;
    margin-left: 0;
}

nav.top.block li:first-child .titlewrap {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

nav.top li:last-child a {
    border-right: none;
}


/* mobile nav */
.navDrop, .searchDrop {
    background: #000;
    position: relative;
}

.navDrop { background: #fff; }

.navDrop:before,
.searchDrop:before {
    position: absolute;
    display: var(--mobileDropShadow);
    top: 0;
    left: 0;
    right: 0;
    content: " ";
    width: 100%;
    height: 8px;
    background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,.15));
}


.navDrop nav.block.mobilemenu>ul {
    font-family: var(--designfont);
    display: block;
    padding: 0px;
}

.navDrop nav.block.mobilemenu>ul li {
    clear: both;
    margin: 0;
}
.navDrop nav.block.mobilemenu>ul>li:last-child {
    border: none;
}

.navDrop nav.block.mobilemenu a {
    color: var(--mobileLinkColor);
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 0;
    margin: 8px 0;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px),  #df111b 2px);
    background-image: -ms-linear-gradient(transparent 95%, #df111b 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
}

/* .navDrop nav.block.mobilemenu a span {
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px),  #df111b 2px);
    background-image: -ms-linear-gradient(transparent 95%, #df111b 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
} */

.navDrop nav.block.mobilemenu a:hover span,
.navDrop nav.block.mobilemenu li.current > a span,
.navDrop nav.block.mobilemenu ul li.main-contact a:hover{
    background-size: 100% 96%;
    text-decoration: none;
    color: #df111b;
}

.navDrop nav.block.mobilemenu ul li.main-contact a {
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    display: inline;
    margin-bottom: 5px;
}

/* Mobile Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>a {
    color: var(--mobileSubLinkColor);
    font-weight: 600;
    padding-left: 1.5rem;
    font-size: 16px;
    text-transform: none;
}

/* Mobile Sub Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>ul>li>a {
    padding-left: 2.5rem;
    color: var(--mobileSubSubLinkColor);
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
}

.navDrop nav.block.mobilemenu a:focus,
.navDrop nav.block.mobilemenu span:focus { outline: 1px dashed #000; }
.navDrop nav.block.mobilemenu .socialTools a { padding: 5px 0 5px 5px; }
.navDrop nav.block.mobilemenu li span.plus {
    margin-top: 2px;
    padding: 10px 0 6px 30px;
    color: var(--mobileLinkColor);
    float: right;
    display: inline-block;
    text-align: right;
    margin-right: 0;
    cursor: pointer;
    font-size: 14pt;
}

/* Drop down +/- Replace */
.navDrop nav.block.mobilemenu .fa.fa-plus-square-o:before {
    content: "\2b";
}

.navDrop nav.block.mobilemenu .fa.fa-minus-square-o:before {
    content: "\f068";
}

.navDrop nav.block.mobilemenu .newSocialTools img {
    width: 28px;
    height: 28px;
}

.navDrop nav.block.mobilemenu li .newSocialTools a {
    margin: 0 10px;
}

.navDrop nav.block.mobilemenu li .newSocialTools a:first-of-type {
    margin-left: 0;
}

.navDrop nav.block.mobilemenu li .newSocialTools a:last-of-type {
    margin-right: 0;
}

/* Mobile Icon Weight / Color */
/* #mobilesearchbutton i, */
.navDrop nav.block.mobilemenu li.openweather i,
.navDrop nav.block.mobilemenu li.airquality i
.navDrop nav.block.mobilemenu li span.plus > i {
    /* Light 100 - Regular: 400 - Solid: 900 */
    font-weight: var(--mobileIconWeight) !important;
    color: var(--mobileIconColor);
}

.navDrop nav.block.mobilemenu li .newSocialTools {
    padding: 10px 0;
}

.navDrop nav.block.mobilemenu ul ul {
    padding-left: 0;
    display: none;
    position: relative;
    width: calc(100% - 10px);
    box-shadow: none;
    margin: 2px 0px 8px 10px;
}

/* .navDrop nav.block.mobilemenu a:hover,
.navDrop nav.block.mobilemenu a:focus,
.navDrop nav.block.mobilemenu li.current>a,
.navDrop nav.block.mobilemenu li.actual>a {
    background: transparent;
    text-decoration: underline;
} */
 
.navDrop nav.block.mobilemenu .mobileSocial .socialTools { float: none; }
.navDrop nav.block.mobilemenu .mobileSocial .socialTools a {
    display: inline-block;
    opacity: 1.0;
}

.navDrop nav.block.mobilemenu li.mobileBorder {
    border-top: var(--mobileBorder);
    display: block;
    margin: 20px 0;
}

.navDrop nav.block.mobilemenu li.openweather a,
.navDrop nav.block.mobilemenu li.airquality  { text-transform: capitalize; color: var(--mobileLinkColor); font-size: 14pt; display: inline-block; padding: 0; font-weight: 400; }
.navDrop nav.block.mobilemenu li.openweather {  padding: 20px 0 10px; margin-top: 10px; }
.navDrop nav.block.mobilemenu li.airquality {  padding: 10px 0; }
.navDrop nav.block.mobilemenu li.openweather i,
.navDrop nav.block.mobilemenu li.airquality i { color: var(--mobileIconColor); display: inline-block; }


.searchDrop .mobilesearch {
    font-size: 120%;
    width: 100%;
}

.searchDrop .mobilesearch .fieldAndButton {
    width: 100%;
    /* border-radius: 8px;
    border: 1px solid #bbb;
    padding: 5px; */
    box-sizing: border-box;
}

.searchDrop .mobilesearch .fieldAndButton .searchField {
    font-size: 120%;
    color: #666;
    padding: 10px;
    width: 80%;
    width: calc(100% - 50px);
    border-radius: 15px;
    border: none;
    height: 50px;
}

.searchDrop .mobilesearch .fieldAndButton .searchMag {
    font-size: 35px;
    float: right;
    height: 35px;
    width: 35px;
    line-height: 40px;
    vertical-align: middle;
    color: #fff;
    font-weight: 400;
    margin-top: 7px;
}

.searchDrop .mobilesearch .fieldAndButton .searchMag:focus { outline-color: #fff; }

/* search results */
h2.search { padding: 1ex; font-size: 130%; }
/* header.page { position: relative; }
header.page .banner { position: relative; margin: 0; } */
.content .box.SUPERFORMS, .content .box.QUICKFORM { line-height: 16pt; }

/* mobile restrictions */
p[class^="Mso"], p.MsoNormal {
    text-indent: 0 !important;
    margin: 0 !important;
}
font[size=2] { font-size: 100%; }
.container.content div.left,
.container.content div.right,
.container.content div.cyclerSlide {
    float: none;
    /* margin: 10px; */
}

.image.right {
    margin: 0 0 15px 0px;
  }

.container.content div.sidebarImageBox img { max-width: 100%; }

.container.content div img { 
    height: auto !important; 
    max-width: 100% !important; 
    border-radius: 15px;
}

.content div.noMobile { display: none; }
.content div.mobileOnly { display: block; }
.content #tourbookdiv>img[style*=height\:168] { height: 168px !important; }

iframe { max-width: 100% !important; }
input { max-width: 100% !important; }

a { 
    color: var(--link);
    position: relative;
    text-decoration: none;
    font-weight: 600;
    width: auto;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
}

a:hover { 
    color: var(--linkHover);  
    background-size: 100% 96%;
}

a:focus { outline: 1px dashed var(--link); }

input:focus { background: #eee; color: var(--bodyColor); }

/*===( HEADLINES )===*/
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--headerFont); 
    margin: 0; 
    text-align: left; 
    color: var(--headerColor); 
    font-weight: 600;
    text-transform: uppercase; 
    letter-spacing: .075rem;
    padding: 5px 0;
}

h1, h2, h3.subtitle,
.home section>h2, .home article>h2, .home aside>h2 {
    font-size: 35px;
    line-height: 115%;
    text-align: left;
    padding: 5px 0;
    margin: 0;
}

.home section>h2, .home article>h2, .home aside>h2 {
    text-align: left;
}

h2 { font-size: 24px; }

h3, h3.subtitle { 
    font-size: 20px; 
    text-transform: none; 
    color: #000; 
    letter-spacing: .025rem;
}

h4 { 
    font-size: 20px; 
    letter-spacing: .025rem;
}

h5 { 
    font-size: 18px; 
    text-transform: none; 
    color: #000; 
    letter-spacing: .025rem;
}

h6 { 
    font-size: 16px; 
    letter-spacing: .025rem;
}

.field.inline > h4 { font-size: 12pt; padding-right: 5px; }
section>h2, article>h2, aside>h2 {
    /* text-align: center; */
}
section>h3, article>h3, section>h3 a, article>h3 a, .summaryDisplay>h2, .headlineDisplay {
    /* text-align: left; */
}
article, section, article main.body, section main.body {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
.item.summaryDisplay, article.summaryDisplay {
    margin: 0;
    padding:8px 0;
}

.summaryDisplay h3 a, .headlineDisplay h3 a,
.item.summaryDisplay h2 a, article.summaryDisplay h2 a {
    margin: 0;
    padding: 5px 0;
    font-weight: 600;
    text-transform: none;
    font-size: 20px;
    color: #000;
    letter-spacing: .025rem;
}



.summaryDisplay h3 a:hover, .headlineDisplay h3 a:hover,
.item.summaryDisplay h2 a:hover, article.summaryDisplay h2 a:hover {
    color: #df111b;
}

div.readmore.small {
    font-weight: bold;
    text-align: left;
    bottom: 0;
    margin-top: 25px;
}
div.readmore.small a,
.seeallitems a,
.listingCheck a,
.QUICKPOLL .questions button,
.QUICKPOLL .questions a {
    display: inline-block;
    padding: var(--buttonpadding);
    background: none;
    color: var(--bodyColor);
    border: var(--buttonborder);
    border-radius: 27.5px;
    font: var(--buttonfont);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .075rem;
    transition: all 300ms ease;
}

.QUICKPOLL .questions button { min-width: 233px; }

.listingCheck,
.listingCheck a {
    text-align: left;
}

.seeallitems a {
    margin-top: 20px;
}

div.readmore.small a:hover,
div.readmore.small a:focus,
.seeallitems a:hover,
.seeallitems a:focus,
.listingCheck a:hover,
.listingCheck a:focus,
.QUICKPOLL .questions button:hover,
.QUICKPOLL .questions button:focus, 
.QUICKPOLL .questions a:hover,
.QUICKPOLL .questions a:focus {
    text-decoration: none;
    background: #df111b;
    color: #fff;
    border-color: #df111b;
}

footer.main {
    position: relative;
    background: var(--secondaryColorBG);
    color: var(--secondaryColorText);
    text-align: center;
    display: block;
    min-height: 200px;
}

footer.main .footer-bottom {
    background: #0e024c; 
    padding: 20px;
    color: #fff;
}

footer.main .footer-bottom a:hover { color: #fff; }

footer.main .footer-bottom a:focus { outline-color: #fff; }

footer.main .footer-top  {
    padding: 20px;
}

footer.main .footer-top .ft-col {
    padding: 10px 0;
}

footer .footerlogo {
    /* position: absolute;
    top: -20px; left: calc(50% - 100px);  */
}

footer.main .text,
footer.main .text2,
footer.main .text3,
footer.main .text4,
footer.main .text5,
footer.main .text6,
footer.main .verticalLogo_text a {
    font-family: var(--designfont);
    vertical-align: top;
    color: var(--secondaryColorText);
    text-align: center;
    padding: 4px 0;
    display: block;
    font-size: 16px;
}

footer.main .verticalLogo_text {
    margin-bottom: 0;
    display: inline;
}

footer.main .verticalLogo_text a,
footer.main .copyright {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .075rem;
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto 5px;
    line-height: 1.75;
}

footer.main .copyright { margin-bottom: 8px; }

span.privacypolicydivider {
    margin: 0 8px;
    font-size: 18px;
    font-weight: 600;
    display: none;
}

footer.main h3 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 24px;
    letter-spacing: .075rem;
    text-transform: uppercase;
    color: #0e024c;
}

footer.main .footer-top .ft-col:nth-of-type(2) {
    padding: 25px 0;
}

footer.main .ft-col:nth-of-type(2) i {
    padding-right: .5rem;
}

footer.main .ft-col:last-of-type i {
    padding-right: .25rem;
}

footer.main a {
    text-decoration: none;
    color: var(--secondaryColorText);
    transition: all 300ms ease;
    font-weight: 400;
}

footer.main a:hover {
    text-decoration: none;
    color: #df111b;
}

footer.main ul {
    padding: 0;
    margin-top: 1ex;
}

footer.main ul > li {
    list-style: none;   
    min-width: 160px;
    margin: 10px 0;
}

footer.main ul > li:first-of-type {
    margin-top: 0;
}

.footersecondary {
    /* background: #ebf1f7 url(images/footerbg.jpg) no-repeat bottom center; */
    background: var(--secondaryColorBG);
    color: var(--secondaryColorText);
    padding: 30px 30px 30px 30px;
    text-align: center;
    line-height: 1;
}
.footersecondary > nav.block > ul {
    display: table;
    width: 100%;
}
.footersecondary > nav.block > ul > li {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    padding: 10px 30px 10px 30px;
}

.footersecondary > nav.block ul > li > ul > li > ul {
    display: none;
}

.footersecondary > nav.block > ul.count2 > li { width: 50%; }
.footersecondary > nav.block > ul.count3 > li { width: 33%; }
.footersecondary > nav.block > ul.count4 > li { width: 25%; }
.footersecondary > nav.block > ul.count5 > li { width: 20%; }
.footersecondary > nav.block a {
    color: var(--secondaryColorText);
    font-family: var(--designfont);
    font-size: 18px;
    padding: 0;
}
.footersecondary > nav.block > ul > li > a {
    font-family: var(--designfont);
    font-size: 24px;
    color: var(--secondaryColorText);
    text-align: left;
    padding: 10px 0;
    text-decoration: underline;
}
.footersecondary > nav.block > ul > li li > a {
    /* padding-left: 10px; */
    text-decoration: underline;
}
.footersecondary > nav.block > ul,
.footersecondary > nav.block > ul ul { padding-left: 0; }

.topbar2 {
    display: none;
    z-index: 15;
}



/* all block */
nav.block a, nav.subsections a {
    font-family: var(--designfont);
    font-size: 20px;
    padding: 0;
}

nav.block>ul>li>a {}
nav.block li.current>a,
nav.block li.open>a,
nav.block li:hover>a {}

/* horizontal-block */
nav.horizontal.block {
    position: absolute;
    bottom: auto; left: auto; right: auto;
    display: block;
    padding: 0 40px;
    text-align: center;
    top: 100%;
    z-index: 15;
    width: 100%;
    background: rgba(14, 2, 76, .9);
}

nav.horizontal.block>ul {
    padding: 13px 0;
    white-space: nowrap;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

nav.horizontal.block>ul>li {
    padding: 0;
    border-right: none;
    line-height: normal;
}

nav.horizontal.block>ul>li>a {
    background: none;
    color: var(--mainNavText);
    border: none;
    margin-right: 0;
    margin-left: 0;
    font-weight: normal;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .075rem;
    padding: 5px 0;
}

nav.horizontal.block>ul>li>ul>li>a { font-size: 18px !important; }

nav.horizontal.block>ul>li>a>span {
    padding: 5px 0;
    width: auto;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
}

nav.horizontal.block>ul>li:last-child>a {
    margin-right: 0;
}

nav.horizontal.block>ul>li.current>a>span,
nav.horizontal.block>ul>li.open>a>span,
nav.horizontal.block>ul>li>a>span:hover,
nav.horizontal.block>ul>li>a>span:focus {
    text-decoration: none;
    background-size: 100% 96%;
}

nav.horizontal.block>ul>li>a:focus { outline-color: white; }

nav.horizontal.block li li>a {
    /* color: #fff;
    margin-bottom: 2px;
    border-radius: 5px; */
    background-size: 0;
    color: #000;
    transition: all 300ms ease;
    margin: 12px 30px;
    font-size: 18px;
}

nav.horizontal.block li li>a span {
    width: auto;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
    -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
    transition: .5s cubic-bezier(.215, .61, .355, 1);
    background-size: 0 96%;
}

nav.horizontal.block li li>a:hover span {
    background-size: 100% 96%;
}

nav.horizontal.block li li:last-child>a {
    margin-bottom: 0;
}

nav.horizontal.block li li.current>a,
nav.horizontal.block li li.open>a,
nav.horizontal.block li li>a:hover,
nav.horizontal.block li li>a:focus {
    /* background: #000;
    color: #fff; */
    /* text-decoration: underline; */
    color: #df111b;
}

nav.horizontal.block>ul>li.open>a {
    position: relative;
    z-index: 1002;
}

nav.horizontal.menu>ul ul {
    background: #fff;
    /* text-align: left;
    border-radius: 7px;
    box-shadow: -7px 7px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 3px;
    border: 2px solid white; */
}

nav.block.menu>ul .triangle {
    margin-top: 4px;
    color: inherit;
    opacity: 1.0;
}

nav.horizontal.block.menu > ul > li > a > .triangle {
    margin-top: -3px;
    margin-left: 5px;
}

nav.block.menu>ul .triangle:focus { outline: 1px dotted #fff; }

nav.subsections h2 { text-align: left; padding-bottom: 35px; }

nav.subsections h2 a { font-size: inherit; }

nav.subsections ul { list-style-type: none; padding: 0; }

nav.subsections ul ul { padding-left: 15px; }

nav.subsections ul ul li { margin: 23px 0 !important; }

nav.subsections ul ul a {
    font-size: 16px !important;
    font-weight: 500;
}

nav.subsections ul ul ul a {
    font-weight: 400;
}

nav.subsections a {
    text-decoration: underline;
    line-height: 1.2;
    font-weight: normal;
    padding: 0;
}
nav.subsections li.actual > a { background-size: 100% 96%; }


/* Slab */

/* Column Borders */
nav.slab.horizontal.block > ul > li ul > li.col {
    /* border-right: 1px solid rgba(53, 53, 53,.4); */
}

/* nav.slab.horizontal.block > ul { position: relative; } */
nav.slab.horizontal.block > ul > li { position: static; }
nav.slab.horizontal.block > ul > li > ul > li > ul { display: block; vertical-align: top; }
nav.slab.horizontal.block > ul > li > ul {
    background: #242424;
    text-align: left;
    border-radius: 0;
    box-shadow: -7px 7px 10px rgba(0, 0, 0, 0.1);
    /* margin-top: 15px; */
    min-width: 100%;
    position: absolute; top: 100%; left: 0; right: 0;
    white-space: normal;
    padding: 50px 100px;
    box-sizing: border-box;
    vertical-align: top;
    line-height: 1.1;
}
nav.slab.horizontal.block > ul > li > ul ul {
    position: static;
    background: none;
    box-shadow: none;
    vertical-align: top;
}

/* column */
nav.slab.horizontal.block.slabtext > ul > li.onecol > ul > li,
nav.slab.horizontal.block > ul > li.twocol > ul > li,
nav.slab.horizontal.block > ul > li.threecol > ul > li,
nav.slab.horizontal.block > ul > li.fourcol > ul > li {
    display: inline-block;
    width: 50%;
    /* border-right: 1px solid rgba(0, 0, 0, 0.3); */
    height: 100%;
    vertical-align: top;
}
nav.slab.horizontal.block.slabtext > ul > li.twocol > ul > li { width: 33%; }
nav.slab.horizontal.block > ul > li.onecol > ul > li:last-child,
nav.slab.horizontal.block > ul > li.twocol > ul > li:last-child,
nav.slab.horizontal.block > ul > li.threecol > ul > li:last-child,
nav.slab.horizontal.block > ul > li.fourcol > ul > li:last-child {
    border-right: none;
}
nav.slab.horizontal.block > ul > li.threecol > ul > li { width: 33%; }
nav.slab.horizontal.block.slabtext > ul > li.threecol > ul > li,
nav.slab.horizontal.block > ul > li.fourcol > ul > li { width: 25%; }
nav.slab.horizontal.block.slabtext > ul > li.fourcol > ul > li { width: 20%; }
nav.slab.horizontal.block.slabtext > ul > li div.slabtext { padding: 15px; }

/* CATEGORIES: grouping box; includes both category link and child links */
nav.slab.horizontal.block > ul > li > ul > li,
nav.slab.horizontal.block > ul > li.onecol > ul > li > ul > li,
nav.slab.horizontal.block > ul > li.twocol > ul > li > ul > li,
nav.slab.horizontal.block > ul > li.threecol > ul > li > ul > li {
    display: block;
    padding: 5px 5px 3px 5px;
    box-sizing: border-box;
}

/* CATEGORIES: child link grouping box; contains just child links */
nav.slab.horizontal > ul > li > ul > li.hasChildren > ul,
nav.slab.horizontal > ul > li > ul > li > ul > li.hasChildren > ul {
    display: block;
    position: relative;
    border: none;
    background: none;
    width: auto;
    margin-left: 20px;
    box-shadow: none;
    font-weight: normal;
}
/* child links */
nav.slab.horizontal > ul > li > ul > li > ul a,
nav.slab.horizontal > ul > li > ul > li > ul > li > ul a {
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
}

nav.slab.horizontal > ul > li > ul > li:hover,
nav.slab.horizontal > ul > li > ul > li:focus {
    /* the blocks around the category containing the children
    /* background-color: rgba(255, 255, 255, 0.3); */
}

/* CATEGORIES: category links */
/* nav.slab.horizontal > ul > li > ul > li > a, */
nav.slab.horizontal > ul > li > ul > li > ul > li > a,
nav.slab.horizontal > ul > li > ul > li > ul > li > a,
nav.slab.horizontal > ul > li > ul > li > ul > li > a {
    font-size: 20px;
    color: #fff;
    padding: 5px 10px;
    /* text-decoration: underline; */
}

/* CATEGORIES: has child links */
nav.slab.horizontal > ul > li > ul > li.hasChildren a {
    background: transparent;
}

/* all links */
nav.slab.horizontal > ul > li > ul > li a {
    padding: 3px 10px;
    margin-bottom: 3px;
    border-bottom: 2px solid transparent;
}

/* all links hover, focus, actual */
nav.slab.horizontal > ul > li > ul > li a:hover,
nav.slab.horizontal > ul > li > ul li.current.actual > a,
nav.slab.horizontal > ul > li > ul > li a:focus,
nav.slab.horizontal > ul > li.twocol > ul > li > ul > li > a:hover,
nav.slab.horizontal > ul > li.twocol > ul > li > ul > li.current.actual > a,
nav.slab.horizontal > ul > li.twocol > ul > li > ul > li > a:focus,
nav.slab.horizontal > ul > li.threecol > ul > li > ul > li > a:hover,
nav.slab.horizontal > ul > li.threecol > ul > li > ul > li.current.actual > a,
nav.slab.horizontal > ul > li.threecol > ul > li > ul > li > a:focus,
nav.slab.horizontal > ul > li.fourcol > ul > li > ul > li > a:hover,
nav.slab.horizontal > ul > li.fourcol > ul > li > ul > li.current.actual > a,
nav.slab.horizontal > ul > li.fourcol > ul > li > ul > li > a:focus {
    /* color: inherit; */
    background: #242424;
    color: #fff !important;
    text-decoration: underline;
    /* border-bottom: 2px solid #9bbf4f; */
}

.inner .breadcrumbs,
.home .breadcrumbs {
    display: none;
}

.inner .breadcrumbs a { font-size: 14px; }

.cookiecrumb > ul > li:first-of-type {
    /* display: none;  */
}

.nogroup.Below {
    padding: 40px;
}

.box.B_BOXES,
.box.promotion.B_LIST.HA_Boxes,
.box.promotion.B_LIST.HA_Boxes_Top { 
    padding: 0; 
    margin: 0; 
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.box.B_BOXES .responsivebox,
.box.promotion.B_LIST.HA_Boxes .responsivebox,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox {
    /* background: #e4e9ee;
    border: 1px solid #c7d2db; */
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0 0 40px;
}

.home .box.B_BOXES .responsivebox,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox {
    box-shadow: 0 2px 6px rgba(0,0,0,.16);
    border-radius: 15px;
    margin-left: auto;;
    margin-right: auto;
    max-width: 475px;
    pointer-events: none;
}

.home .box.B_BOXES .responsivebox:hover div.image img,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox:hover div.image img,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:hover div.image img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.box.B_BOXES .responsivebox div.image,
.box.promotion.B_LIST.HA_Boxes .responsivebox div.image,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
    margin: 0;
}

.home .box.B_BOXES .responsivebox div.image,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox div.image,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
    height: 230px;
}

.inner .box.B_BOXES .responsivebox div.image,
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image,
.inner .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
    margin-bottom: 25px;
}

.box.B_BOXES .responsivebox div.image img,
.box.promotion.B_LIST.HA_Boxes .responsivebox div.image img,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image img {
    margin: 0;
    vertical-align: bottom;
    height: auto !important;
    object-fit: cover;
    transition: transform .3s ease-out;
    transform: scale(1.00);
}

.home .box.B_BOXES .responsivebox div.image img,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox div.image img,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image img {
    height: 230px !important;
}

.home .box.B_BOXES .responsivebox h2,
.home .box.B_BOXES .responsivebox h2 a,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox h2,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background-size: 0;
    pointer-events: auto;
    letter-spacing: .075rem;
}

.home .box.B_BOXES .responsivebox h2,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox h2,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.9);
    padding: 25px;
    transition: background 300ms ease;
    text-align: center;
}

.inner .box.B_BOXES .responsivebox h2,
.inner .box.B_BOXES .responsivebox h2 a,
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox h2,
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a,
.inner .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2,
.inner .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a {
    font-size: 20px;
    text-transform: none;
    letter-spacing: .025rem;
}

.inner .box.B_BOXES .responsivebox h2,
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox h2,
.inner .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 {
    padding-bottom: 25px;
}

.home .box.B_BOXES .responsivebox h2:hover,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox h2:hover,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2:hover {
    background: #df111b;
}

.home .box.B_BOXES .responsivebox h2 a:focus,
.home .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a:focus,
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a:focus {
    outline-color: white;
}

.box.promotion.HA_Boxes_Top .responsivebox div.image img {
    vertical-align: bottom;
}

.home .box.promotion.B_LIST.HA_Boxes_Top .boxbody { display: none; }

/* News Image Max Size */
.inner .B_PR article.summaryDisplay .image.left {
    max-width: 280px !important;
}

/* ------------- Notice/Event Image ------------- */ 
.B_PR .body .summaryDisplay, 
.B_EV .body:not(._moderncalendar) .summaryDisplay { 
  position: relative; 
  padding: 12px 0; 
} 

.B_PR .body .summaryDisplay > div.image, 
.B_PR .body .summaryDisplay > div.default-image, 
.B_EV .body .summaryDisplay > div.image, 
.B_EV .body .summaryDisplay > div.default-image { 
  position: relative; 
  left: 0; 
  top: auto; 
  transform: none; 
  width: 152px !important; 
  display: block; 
  float: none; 
} 

.B_EV .summaryDisplay .body, 
.B_PR .summaryDisplay .body { 
  display: none; 
} 

.B_PR article.summaryDisplay .image img , 
.B_PR article.summaryDisplay .default-image img, 
.B_EV article.summaryDisplay .image img , 
.B_EV article.summaryDisplay .default-image img {  
  height: auto !important;  
  max-height: 113px !important;  
  max-width: 100% !important; 
  margin: 0 auto; 
  display: block; 
  width: unset !important; 
  /* border-radius: 10px;*/ 
  box-shadow: 0px 0px 10px rgba(0,0,0,.25);  
} 

.B_PR article.summaryDisplay, 
.B_EV article.summaryDisplay {  
  display: flex; 
  align-items: center; 
  width: 100%; 
  clear: both; 
} 

.B_PR article.summaryDisplay .clr, .B_EV article.summaryDisplay .clr { display: none; } 

.B_PR article.summaryDisplay .image, .B_PR .body .summaryDisplay > div.default-image, 
.B_EV article.summaryDisplay .image, .B_EV .body .summaryDisplay > div.default-image {  
  max-width: 280px !important;  
  margin: 0 20px 0 0 !important;  
} 

.inner .mainContent .insideMainContent .fullDisplay.B_PR .image { max-width: 350px; } 
.inner .B_EV article.summaryDisplay .image { max-width: 280px !important; margin: 0; } 
.inner .mainContent .insideMainContent .fullDisplay.B_EV .image { max-width: 350px; } 
/* ------------- Notice/Event Image End ------------- */ 

/* -- Responsive Tables -- */  
table {  
    border-spacing: 0;  
    border-collapse: collapse;  
}  

table tr td, table tr th {  
    border: 1px solid #DDD;  
}  

.table-responsive {  
    width: 100%;  
    overflow-x: auto;  
    -webkit-overflow-scrolling: touch;  
}  

.table-responsive table { 
    /* width: max-content; */ 
    min-width: 100%; 
} 

.table-responsive table td, 
.table-responsive table th { 
    white-space: normal; /* ← allow text to wrap */ 
    overflow-wrap: break-word; 
} 

.table-responsive.col1.has-img table td, 
.table-responsive.col1.has-img table th { 
    max-width: 100%; 
    width: 100%; 
} 

.table-responsive.col2.has-img table td, 
.table-responsive.col2.has-img table th { 
    max-width: 50%; 
    width: 100%; 
} 

.table-responsive.col3.has-img table td, 
.table-responsive.col3.has-img table th { 
    max-width: 33%; 
    width: 100%;
} 

.table-responsive.col4.has-img table td, 
.table-responsive.col4.has-img table th { 
    max-width: 25%;  
    width: 100%; 
} 

.table-scroll-notice::before {  
    content: " This table scrolls horizontally";  
    display: block;  
    font-size: 16px;  
    color: #333;  
    padding: 0.25em 10px;  
    background: #f9f9f9; 
    border-left: 3px solid #DDD;  
    margin-bottom: 0.5em;  
    font-style: italic;  
}  
/* -- Responsive Tables End -- */  


/* calendar */
.calMonth table {
    background: #000;
    color: #fff;
    border: none;
    border-spacing: 1px;
    border-collapse: separate;
    font-size: 90%;
}

.calMonth .calMonthName, .calMonth .calYear { color: #000; }

._moderncalendar .calMonth .calMonthName,
._moderncalendar .calMonth .calYear {
    color: #000;
  }

  .calMonth .chevron {
    display: inline-block;
    background-size: 0;
    color: #000;
    transition: all 300ms ease;
}
.calMonth .chevron:hover {
    color: #df111b;
}

.calMonthHeading {
    background: #fff;
    color: #000;
    border: none;
    font-size: 90%;
    border: 1px solid #000;
    border-bottom: none;
}

._moderncalendar .calDayHeading th {
    background: #0e024c;
    color: #fff;

    padding: 8px 0;
    font-weight: 600;
  }

.calDayHeading th {
    background: #fff;
    color: #555;
}

.calDay.calGrayDay {
    background: #eee;
    color: #000;
}
.calDay {
    background: #fff;
    color: #000;
    font-weight: bold;
}
table.calendarTable .calDay a hr { display: none; }

table.calendarTable .calDay a.eventLink { 
    margin: 1px; 
    text-decoration: none;
    width: fit-content
}

.calDay .calDayNum {
    display: inline-block;
    margin: 0 5px 5px 0;
    border-radius: 3px;
    padding: 4px 4px 2px 3px;
    text-align: center;
    min-width: 20px;
}

.calMonth td, .calMonth th { border: none; }
.calToday { background-color: #fff; filter: none; }

._moderncalendar td.calDay { font-weight: 500; }

._moderncalendar .calDay.calEvent .calDayNum {
    background: #0e024c;
    color: #ffff;
}

.calToday .calDayNum {
    background: #000;
    color: #fff;
}

._moderncalendar .dayevents {
    z-index: 1;
}

.circleDate {
    position: absolute;
    left: 0;
    height: 72px;
    width: 72px;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--designfont);
    background: #0e024c;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* keep the date/time from line-breaking below .circleDate */
._eventsbox article.summaryDisplay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 0 0 86px;
    /* overflow: hidden; */
    margin: 25px 0;
}

._eventsbox article.summaryDisplay h2 a { font-weight: 500; }

.eventTip {
    color: black;
    border-color: #777777;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.innerimage {
    height: 300px;
    background: url("images/internal-banner-01.jpg") no-repeat center;
    background-size: cover !important;
}

.inner .singlepic { height: 300px; }

.innerimage.random1 {
    background: url("images/internal-banner-01.jpg") no-repeat center;
}

.innerimage.random2 {
    background: url("images/internal-banner-02.jpg") no-repeat center;
}

.innerimage.random3 {
    background: url("images/internal-banner-03.jpg") no-repeat center;
}

/* ------------- SLIDER ------------- */
/* Home Slider + Banner Height */
.slider_owl div.item, .singlepic,
.home .slidercontainer .slides .slide {
    height: var(--homeBannerHeightMob);
}

/* Inner Slider + Banner  Height */
.inner .slidercontainer .slides .slide,
.innerimage {
    height: var(--innerBannerHeightMob);
}

.slidercontainer .titlebox {
    z-index: 1;
    width: 100%;
    inset: 40% auto auto 50% !important;
}

.slidercontainer .titlebox .title {
    font-size: 36px !important;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
    letter-spacing: .075rem;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,.5);
    line-height: 1.2;
    margin-bottom: 10px !important;
}

.slidercontainer .titlebox .title .subtitle {
    display: none;
}

.slidercontainer .titlebox .title .caption {
    display: none;
}

.slidercontainer .slides .slide .titlebox a {
    display: inline;
    color: #fff; 
    padding: 12px 40px;
    border: 2px solid #fff;
    border-radius: 27.5px;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .075rem;
}

.slidercontainer .slides .slide .titlebox a:hover,
.slidercontainer .slides .slide .titlebox a:focus {
    color: var(--bodyColor);
    background-color: #df111b;
    background-size: 0;
    border-color: #df111b;
    color: #fff;
}


/* Controls */
.slidercontainer .controls {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 80px;
    z-index: 2;
    transform: translateX(-50%);
}

.slidercontainer .arrowprev,
.slidercontainer .arrownext,
.slidercontainer .arrowpause,
.slidercontainer .arrowplay {
    font-size: 16px;
    color: #fff;
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(255, 255, 255, .2);
    border: 2px solid #fff;
    transition: all 300ms ease;
    z-index: 2;
}

.slidercontainer .arrowprev:hover,
.slidercontainer .arrownext:hover,
.slidercontainer .arrowpause:hover,
.slidercontainer .arrowplay:hover,
.slidercontainer .arrowprev:focus,
.slidercontainer .arrownext:focus,
.slidercontainer .arrowpause:focus,
.slidercontainer .arrowplay:focus {
    color: #fff;
    background: #df111b;
    border: 2px solid #df111b;
}

/* Overlay */
.home .singlepic:before,
.home .slider_wrap1 .owl-item:before,
.home .slidercontainer .slides .slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--homeCarouselOverlay);
    z-index: 1;
}


/* ------------- FILMSTRIP / QUICK LINKS ------------- */



/* Controls */
.quicklinkscontainer button.arrowprev,
.quicklinkscontainer button.arrownext,
.quicklinkscontainer button.arrowpause,
.quicklinkscontainer button.arrowplay {
    font-size: 14px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,.35);
}

.quicklinkscontainer button.arrowprev:hover,
.quicklinkscontainer button.arrownext:hover,
.quicklinkscontainer button.arrowpause:hover,
.quicklinkscontainer button.arrowplay:hover,
.quicklinkscontainer button.arrowprev:focus,
.quicklinkscontainer button.arrownext:focus,
.quicklinkscontainer button.arrowpause:focus,
.quicklinkscontainer button.arrowplay:focus {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

.quicklinkscontainer button.arrowpause,
.quicklinkscontainer button.arrowplay {
    /* Only if auto play is off in the CMS */
    display: none;
}



.slider_wrap1 {
    position: relative;
    font-size: 0;
    line-height: normal;
}
.slider_owl, .singlepic {
    min-height: 250px;
    overflow: hidden;
    position: relative;
    font-size: 0;
    line-height: normal;
}

.slider_owl .owl-nav, .slider_owl .owl-dots { display: none; }
.slider_owl div.owl-item,
.slider_owl div.item {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 0;
    margin: 0; padding: 0;
}

.slider_owl div.item, .singlepic { height: 580px; }

.singlepic:before,
.slider_owl div.item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.25);
    z-index: 1;
}


.singlepic .description,
.slider_owl .description {
    box-sizing: border-box;
    position: absolute;
    /* bottom: 0; */
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.slider_owl .description h2,
.singlepic .description h2 {
    font-size: 35pt;
    font-weight: 700;
    color: #fff;
    padding-bottom: 20px;
}

.slider_owl .description a,
.singlepic .description a {
    color: #fff;
    padding: 12px 40px;
    border: 1px solid #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.slider_owl .description a:hover,
.singlepic .description a:hover {
    color: var(--bodyColor);
    background: #fff;
}

.slider_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.slider_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.inner .slider_arrowwrap .controls {
    bottom: 20px;
}

.slider_arrowwrap span.arrowleft,
.slider_arrowwrap span.arrowright,
.slider_arrowwrap span.arrowpause,
.slider_arrowwrap span.arrowplay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    z-index: 5;
    padding: 10px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 5px;
    border: 2px solid #fff;
    transition: background 300ms ease, color 300ms ease;
}
.slider_arrowwrap span.arrowleft:hover, .slider_arrowwrap span.arrowright:hover,
.slider_arrowwrap span.arrowpause:hover, .slider_arrowwrap span.arrowplay:hover,
.slider_arrowwrap span.arrowleft:focus, .slider_arrowwrap span.arrowright:focus,
.slider_arrowwrap span.arrowpause:focus, .slider_arrowwrap span.arrowplay:focus { color: var(--bodyColor); background: #fff; outline: none; border: 2px solid #fff; }
.slider_arrowwrap span.arrowplay { display: none; }



.filmstrip_wrap1 {
    position: relative;
    font-size: 0;
    line-height: normal;
}
.filmstripbar_owl {
    /* padding: 5px 50px; */
    padding: 5px;
    background: #000;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid white;
}
.filmstrip_owl .owl-nav, .filmstrip_owl .owl-dots { display: none; }
.filmstrip_owl { overflow: hidden; }
.filmstrip_owl div.owl-item,
.filmstrip_owl div.item,
.filmstrip_owl div.item a {
    line-height: 70px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    vertical-align: middle;
}
.filmstrip_owl div.item a { padding: 5px; }
.filmstrip_owl div.item a:focus { outline: 1px dashed #fff; }
.filmstrip_owl div.item a img {
    height: 70px;
    display: inline-block;
    vertical-align: middle;
}
.filmstrip_owl div.item a div {
    padding: 5px 0;
    display: block;
    vertical-align: middle;
    font-family: var(--designfont);
    white-space: normal;
    font-size: 14pt;
    line-height: 110%;
    color: #fff;
}
.filmstrip_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.filmstrip_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    width: 45px;
    height: 45px;
}
.filmstrip_arrowwrap span.arrowleft,
.filmstrip_arrowwrap span.arrowright,
.filmstrip_arrowwrap span.arrowpause,
.filmstrip_arrowwrap span.arrowplay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    z-index: 5;
    padding: 5px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 5px;
    border: 2px solid #fff;
    transition: background 300ms ease, color 300ms ease;
}
.filmstrip_arrowwrap span.arrowleft:hover, .filmstrip_arrowwrap span.arrowright:hover,
.filmstrip_arrowwrap span.arrowpause:hover, .filmstrip_arrowwrap span.arrowplay:hover,
.filmstrip_arrowwrap span.arrowleft:focus, .filmstrip_arrowwrap span.arrowright:focus,
.filmstrip_arrowwrap span.arrowpause:focus, .filmstrip_arrowwrap span.arrowplay:focus { color: #fff; background: rgba(0,0,0,0.7); outline: none; border: 2px solid #fff; }
.filmstrip_arrowwrap span.arrowplay { display: none; }


.carousel_wrap1 {
    font-size: 0;
    line-height: normal;
}

.bigCarouselTitle {
    font-family: var(--designfont);
    font-size: 24pt;
    text-align: center;
    padding: 10px 20px;
}

.carouselbar_owl {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: transparent;
    padding: 0 80px 10px;
}

.carousel_owl .owl-stage-outer {
    overflow: hidden;
}

.carousel_owl .owl-nav, .carousel_owl .owl-dots { display: none; }

.carousel_owl div.owl-item {
    display: inline-block;
    vertical-align: top;
    background: transparent;
    padding: 35px 35px 50px 35px;
}
.carousel_owl div.item {
    display: block;
    position: relative;
    vertical-align: top;
    border-radius: 5px;
    overflow: hidden;
}
.carousel_owl div.item>a {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
}

/* carousel image zoom hover */
.carousel_owl div.item img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
     transition: transform .3s ease-out;
     -moz-transform: scale(1.0025);
    -webkit-transform: scale(1.0025);
    -o-transform: scale(1.0025);
    transform: scale(1.0025);
}

.carousel_owl div.item img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.carousel_owl div.item .imgscale {
    overflow: hidden;
    padding: 0;
}

.carousel_owl div.item .title {
    color: #fff;
    font-size: 1.2rem;
    padding: 20px;
    font-family: var(--designfont);
    text-decoration: none;
    display: block;
    text-align: center;
    background: #000;
}

.carousel_owl div.item div {
    padding: 10px;
    font-size: 12pt;
    color: #fff;
    text-align: left;
}

.carousel_owl div.item div a {
    color: #fff;
    text-decoration: underline;
}

.carousel_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    width: 45px;
    height: 45px;
}

.carousel_arrowwrap span.arrowleft,
.carousel_arrowwrap span.arrowright,
.carousel_arrowwrap span.arrowpause,
.carousel_arrowwrap span.arrowplay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #000;
    z-index: 5;
    padding: 5px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 5px;
    border: 2px solid #000;
    transition: background 300ms ease, color 300ms ease;
}
.carousel_arrowwrap span.arrowleft:hover, .carousel_arrowwrap span.arrowright:hover,
.carousel_arrowwrap span.arrowpause:hover, .carousel_arrowwrap span.arrowplay:hover,
.carousel_arrowwrap span.arrowleft:focus, .carousel_arrowwrap span.arrowright:focus,
.carousel_arrowwrap span.arrowpause:focus, .carousel_arrowwrap span.arrowplay:focus { color: #fff; background: rgba(0,0,0,0.7); outline: none; border: 2px solid #000; }
.carousel_arrowwrap span.arrowplay { display: none; }

/* additional styles for content types & features */
.accordion button.accordionall,
.B_MEET .meetings.search .button {
    color: var(--bodyColor);
    border-radius: 27.5px;
    font: var(--buttonfont);
    letter-spacing: .075rem;
    text-transform: uppercase;
    background: none;
    border: var(--buttonborder);
    padding: var(--buttonpadding);
    transition: all 300ms ease;
}

.accordion button.accordionall { margin-bottom: 20px; }

.accordion article.summaryDisplay h2.accordionheader {
    padding: 14px 33px;
    line-height: 1.2;
    font-size: 18px;
    transition: background 300ms ease;
    color: var(--bodyColor);
    background: none;
    border: var(--buttonborder);
    border-radius: 15px;
    transition: all 300ms ease;
    letter-spacing: .025rem;
    text-transform: none;
}

.accordion article.summaryDisplay h2.accordionheader:hover,
.accordion button.accordionall:hover,
.B_MEET .meetings.search .button:hover {
    color: #fff;
    background: #df111b;
    border-color: #df111b;
}

.accordion article.summaryDisplay .description {
    padding: 10px;
}

.accordion article.summaryDisplay .description h2 { padding: 5px 0; }

.accordion article.summaryDisplay h2.accordionheader button {
    color: var(--bodyColor);
}

.accordion article.summaryDisplay h2.accordionheader:hover button {
    color: #fff;
}

.B_MEET .meetings.search .searchHeader {
    margin-right: 0;
}

.B_MEET .meetings.search .fieldAndButton .searchField {
    padding: 10px;
    font-size: 14px;
    margin: 15px;
}

.B_MEET .boxdate,
.B_MEET .boxdate.done {
    background: #0e024c;
    color: #fff;
    border: none;
    border-radius: 15px;
}

.B_MEET .meetings.search .fieldAndButton .searchField {
    padding: 12px;
}

  .DIR_PER article.summaryDisplay h2 a {
    font-family: var(--designfont);
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: inline-block;
    font-size: 24px;
}

.DIR_PER article.summaryDisplay h2 a:hover { color: #df111b; }

.DIR_PER h4 div {
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.DIR_BUS .field.inline, 
.DIR_PER .field.inline { display: block; }

.galleryBox span.arrowleft,
.galleryBox span.arrowright,
.galleryBox span.arrowpause,
.galleryBox span.arrowplay {
    font-size: 15px;
}

/* Documents content type */
.mainContent .docmanContainer {
    padding: 30px 0;
}

.docmanContainer .docmanSearch input {
    background: none;
    font-family: var(--designfont);
    color: #000;
}

.docmanContainer .breadcrumb {
    color: var(--bodyColor);
}

.docmanContainer h3.searchTitle {
    color: var(--headerColor);
    font-weight: 600;
}

.docmanContainer .subfolders > div > div > i {
    color: #000;
}

.docmanContainer #docmanSearchButton {
    position: relative;
    top: -1px;
    border-radius: 27.5px;
    padding: var(--buttonpadding);
    transition: background 200ms ease, color 200ms ease;
    color: var(--bodyColor);
    background: none;
    font: var(--buttonfont);
    text-transform: uppercase;
    border: var(--buttonborder);
}

.docmanContainer #docmanSearchButton:hover {
    color: #fff;
    background: #df111b;
    border-color: #df111b;
}

/* Forms Button */
form input[type='button'],
form input[type='submit'] {
    color: var(--bodyColor);
    background: none;
    border-radius: 27.5px;
    font: var(--buttonfont) !important;
    text-transform: uppercase;
    border: var(--buttonborder);
    transition: all 300ms ease;
    padding: var(--buttonpadding);
    letter-spacing: .025rem;
}

form input[type='button']:hover,
form input[type='submit']:hover {
    color: #fff;
    background: #df111b;
    border-color: #df111b;
} 

/* Image Gallery button align */
.galleryBox span.arrowleft, .galleryBox span.arrowright { padding: 2px 5px; }
.galleryBox span.arrowpause { padding: 2px 4px 2px 6px; }
.galleryBox span.arrowplay { padding: 2px 0 2px 3px; }

/* fixed misalignment in Details on Business Directory page */
.field.inline > h4 { padding: 0 8px 0 0; }


/* New Calendar */
.calendar-container .calendar-body {
    background: var(--mainColorBG);
}

.calendar-container .calendar-body .calendar-weekdays li {
    background: #0e024c;
    color: #fff;
}

.calendar-container .calendar-header .header-left .calendar-nav {
    background: var(--mainColorBG);
    color: var(--mainColorText);
    border: none;
}

.calendar-container .calendar-body .calendar-dates li.active div.day {
    background: #0e024c;
    color: #fff;
}

.calendar-container .calendar-body .calendar-dates li div.day {
    background: #0e024c;
    color: #fff;
    font-weight: 500;
}

.calendar-container .calendar-body .calendar-dates li a.event {
    border: none;
    color: var(--bodyColor);
    border-radius: 0;
    letter-spacing: 0;
    padding: 0 !important;
    box-shadow: none;
    background: none;
}

.calendar-container .calendar-body .calendar-dates li a.event > div {
    background: none;
}

.calendar-container .procal-box .boxdate,
.calendar-container .boxdate {
    background: #0e024c;
    color: #fff;
}

.calendar-container .calendar-header .header-left .calendar-current-date {
    font-size: 16px;
}

.calendar-container .calendar-header .header-left button.today {
    background: none;
    color: var(--bodyColor);
    border: 2px solid #000;
    border-radius: 27.5px;
    font: var(--buttonfont);
    text-transform: uppercase;
    transition: all 300ms ease;
    font-size: 16px;
    padding: 8px 30px;
}

.calendar-container .calendar-header .header-left button.today:hover {
    background: #df111b;
    color: #fff;
    border-color: #df111b;
}

.eventlistitem h3 {
    padding-bottom: 0;
}

.eventlistitem a {
    color: var(--bodyColor);
    font-weight: 500;
    text-transform: capitalize;
}

.eventlistitem a:hover { text-decoration: none; color:#df111b; }

.eventlistitem {
    /* border-bottom: var(--dividerBorder); */
    border-bottom: none;
    align-items: center;
}

.eventlistitem .eventtime {
    color: var(--bodyColor);
}

.calendar-container .procal-belowheader  div.calendar-list h2 {
    border-bottom: var(--buttonborder);
    color: var(--bodyColor);
}


.procalendar dialog.dialog:modal .category i:after {
    font-family: var(--designfont);
    font-weight: 700;
}

.calendar-container .calendar-body .calendar-dates li a.event {
    font-weight: 400;
}

.calendar-container .calendar-body .calendar-dates li a.event span.ctitle {
    font-weight: 700;
}

.calendar-container .calendar-list > h2 {
    font-family: var(--designfont);
    font-weight: 700;
    color: var(--bodyColor);
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: var(--dividerBorder);
    /* border-bottom: none; */
}

dialog.dialog:modal {
    border-radius: 0;
}

dialog.dialog hr {
    border: none;
    border-bottom: var(--dividerBorder);
}

dialog.dialog span.label {
    font-size: 16px;
    font-weight: 700;
}

dialog.dialog .description,
dialog.dialog .category {
    font-size: 16px;
    font-weight: 400;
}

dialog.dialog .category label {
    font-weight: 700;
}


dialog.dialog button.closedialog {
    color: var(--bodyColor);
    font-family: var(--designfont);
}

dialog.dialog button.closedialog:hover {
    text-decoration: underline;
}

.calendar-container .calendar-box .calendar-header .header-right .categories {
    border-color: var(--buttonborder);
}


/* New Calendar Global Proposed Fixes */
/* Remove line dividers in the header of the calendar */
.calendar-container .calendar-body ul.calendar-weekdays {
    gap: 0;
    width: 100%;
}

ul.calendar-weekdays > li {
    flex-grow: 1;
}

/* Filter Text: Either disable or display None */
.calendar-container .calendar-box .calendar-header .header-right > label {
    display: none;
}

/* Filter Bar Styling */
/* Not sure how to style the drop down? The few things I've tried dont affect it. */
.calendar-container .calendar-box .calendar-header .header-right .categories {
    width: 180px;
    padding: 4px 8px;
    font-size: 14px;
}

/* Modal: Border */
dialog.dialog:modal {
    border: none;
}

/* Modal: Container */
dialog.dialog .beforemap, dialog.dialog .aftermap {
    padding: 20px 60px;
}

/* Modal: Reduce space between icon and text */
dialog.dialog i {
    margin-right: 5px;
}

/* Modal: Close button */
dialog.dialog button.closedialog {
    top: 20px;
    font-size: 11pt;
}

/* Modal: Space above the Get Directions button */
dialog.dialog .location .maplink {
    margin-top: 10px;
    display: block;
}

/* Modal: main header remove margin below. */
dialog.dialog h2 {
    margin: 0;
}

.mobilemenu li.main-contact {
    padding: .25rem 0;
}

.mobilemenu li.main-contact i {
    display: inline;
    padding-right: .5rem;
    color: var(--mobileIconColor);
}

.card-container .card-item .story i,
.promotion .story i {
    color: var(--iconColor)
}

.card-container .card-item .story i,
.promotion .story i {
    font-weight: 900;
    padding-right: 35px;
}

.inner .insideMainContent .sectionIntro > .body > h1 {
    font-size: 35px;
    text-align: left;
    line-height: 1;
    padding-bottom: 35px;
}

.home .insideMainContent .sectionIntro {
    padding: 20px 0 50px;
    border-bottom: var(--dividerBorder);
    margin-bottom: 0;
    text-align: center;
}

.home .insideMainContent .sectionIntro h1 {
    text-align: center;
    padding-bottom: 35px;
}

.home .insideMainContent .sectionIntro .summary {
    font-size: 16px;
}

.home .fifty.events .eventsitem .field.category {
    display: none;
}

.card-container .card-item .readmore.small {
    right: auto;
    left: 25px;
}

.home .card-container .card-item .story {
    padding-top: 20px;
    margin-top: 20px;
    padding-bottom: 0;
    border-top: var(--dividerBorder);
    align-items: center;
}

.home .card-container .card-item .story:first-of-type {
    margin-top: 0;
    padding-bottom: 0;
    border-top: none;
}

.home .card-container .card-item {
    padding: 25px 25px 85px 25px;
    margin-bottom: 20px;
}

.box.promotion h3,
.box.promotion article.summaryDisplay h3,
.box.promotion div.headlineDisplay h3 {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--bodyColor);
}

.box.promotion h3 a,
.box.promotion article.summaryDisplay h3 a,
.box.promotion div.headlineDisplay h3 a {
    text-decoration: none;
    font-weight: 700;
}

.box.promotion h3 a:hover,
.box.promotion article.summaryDisplay h3 a:hover,
.box.promotion div.headlineDisplay h3 a:hover {
    text-decoration: underline;
}

.newsdatetime time,
.eventsdatetime time {
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.inner section>h2,
.inner article>h2,
.inner aside>h2 {
    text-align: left;
    padding-bottom: 10px;
}

.namesearchbox > div {
    padding: 10px;
    width: 300px;
    line-height: normal;
    border-radius: 27.5px;
    border: 2px solid #000;
}

.namesearchbox label {
    margin: 20px;
}

.namesearchbox > div {
    margin: 9px;
}


.searchSocial .search.bar .fieldAndButton,
.namesearchbox > div,
.docmanContainer .docmanSearch,
.mainContent .B_MEET .meetings.search .fieldAndButton .searchField,
div.sffield input {
    padding: 10px;
    height: 50px;
    width: 300px;
    line-height: normal;
    border-radius: 15px;
    border: none;
    background: #f7f7f7;
    color: #000;
    font-size: 16px;
    font-family: var(--designfont);
}

.docmanContainer .docmanSearch { 
    width: unset; 
    padding-top: 8px;
    padding-bottom: 8px;
}

.mainContent .B_MEET .meetings.search .fieldAndButton .searchField { width: 270px; }

.searchSocial .search.bar .searchField,
.namesearch {
    background: none;
    font-size: 16px;
    padding: 1px 5px 0 10px;
    width: 85%;
    font-family: var(--designfont);
    color: var(--bodyColor);
    font-weight: 400;
}

.namesearch {
    width: 87%;
    padding-top: 3px;
}

.searchSocial .search.bar .fieldAndButton {
    background: none;
    border: 2px solid #000;
    border-radius: 27.5px;
}

.searchSocial .search.bar .searchMag {
    margin: 4px 9px;
    color: #000;
}

.searchSocial .search.bar .searchMag:hover {
    color: #df111b;
    background-size: 0;
}

/* responsive */
@media (min-width: 100px) {
    .content { 
        width: 100%; 
        padding-left: 40px;
        padding-right: 40px;
    }

    .mainContent { width: 100%; }

    .mainContent, .leftContent, .rightContent { padding: 40px 0; }

    .home .mainContent { padding: 40px 0; }

    .calendarTable .medium { display: none; }
    .allContainer { padding: 0; }
    .inner .content { min-height: 300px; }
}

@media (min-width:500px) {
    .filmstrip_owl div.item a { line-height: 80px; }
    .filmstrip_owl div.item a img { height: 80px; }
    .filmstrip_owl div.item a div { padding: 10px 0; }

    .home .box.B_BOXES .responsivebox div.image,
    .home .box.promotion.B_LIST.HA_Boxes .responsivebox div.image,
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
        height: 330px;
    }

    .home .box.B_BOXES .responsivebox div.image img,
    .home .box.promotion.B_LIST.HA_Boxes .responsivebox div.image img,
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image img {
        height: 330px !important;
    }
}

/* stack left and right columns in "tablet mode" */
@media (min-width: 500px) and (max-width: 899px) {
    .leftContent.hasRight, .rightContent.hasLeft {
        width: 100%;
    }
}

@media (min-width:900px) {
    .alertcontainer button.closealerts { 
        top: calc(50% - 13px);
    }

    .content { padding: 0 40px; }

    .inner .content { padding: 0 40px; }

    .leftContent { padding: 20px 0 20px 0; }
    .rightContent { padding: 20px 0 20px 0; }
    .mainContent.hasLeft, .mainContent.hasRight { width: 75%; }
    .mainContent.hasLeft.hasRight { width: 50%; }

    .inner .mainContent.hasLeft {
        padding-left: 40px;
    }

    .inner .mainContent.hasLeft.hasRight {
        padding: 60px 40px;
    }

    .inner .rightContent, .inner .leftContent, .inner .mainContent {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home .mainContent.hasLeft.hasRight { width: 34%; }
    .home .mainContent.hasLeft, .home .mainContent.hasRight { width: 67%; }
    .home .leftContent, .home .rightContent { width: 33%; }
    .home .insideMainContent { padding: 20px 0; }
    .home .mainContent .insideMainContent,
    .home .leftContent .insideLeftContent,
    .home .rightContent .insideRightContent,
    .inner .leftContent .insideLeftContent,
    .inner .rightContent .insideRightContent {
        /* border: 1px solid #ccc;
        background: #eee; */
    }

    /* Home Slider + Banner Height */
    .slider_owl div.item, .singlepic,
    .home .slidercontainer .slides .slide {
        height: var(--homeBannerHeight);
    }

    /* Inner Slider + Banner Height */
    .inner .slidercontainer .slides .slide,
    .innerimage {
        height: var(--innerBannerHeight);
    }

    footer.main .verticalLogo_text a,
    footer.main .copyright {
        display: inline;
        margin: unset;
    }

    footer.main .footer-bottom {
        display: flex;
        justify-content: space-between;
        padding: 20px 100px;
    }

    footer.main .verticalLogo_text {
        margin: 0;
    }

    span.privacypolicydivider { display: inline; }

    .home .card-container .card-item:first-of-type {
        padding-left: 0;
    }

    .home .card-container .card-item:last-of-type {
        padding-right: 0;
    }

    .card-container .card-item:first-of-type .readmore.small {
        left: 0;
    }

    .slider_owl .description h2,
    .singlepic .description h2 {
        font-size: 50pt;
    }

    .fixedSocialTools a {
        padding: 12px;
    }

    nav.horizontal.block > ul > li > ul,
    nav.horizontal.menu>ul ul ul {
        width: 250px !important; 
        padding-bottom: 25px;
        padding-top: 5px;
    }

    nav.horizontal.menu>ul ul ul {
        top: 0 !important;
        margin: 0 10px 0 5px;
        border-radius: 15px;
    }

    nav.horizontal.menu > ul li:last-of-type ul ul {
        margin-left: -5px;
        border-radius: 15px;
    }

    nav.horizontal.block > ul > li > ul {
        left: 50% !important;
        transform: translate(-60%);
        margin: 29px 10px 0 25px;
        border-radius: 15px;
    }

    nav.block a, nav.subsections a {
        margin: 8px 30px;
        text-align: left;
        font-weight: 600;
    }

    .inner .insideLeftContent nav.block a, 
    .inner .insideLeftContent nav.subsections a {
        padding: 2px 0;
        text-decoration: none;
        color: var(--bodyColor);
        margin: 0;
        transition: all 300ms ease;
        font-size: 18px;
    }

    .inner .insideLeftContent nav.subsections .body ul li {
        margin: 23px 0;
    }

    .inner .insideLeftContent nav.subsections .body ul li:first-of-type {
        margin-top: 8px;
    }

    .inner .insideLeftContent nav.block a:hover, 
    .inner .insideLeftContent nav.subsections a:hover {
        text-decoration: none;
    }

    .inner .insideLeftContent nav.subsections a:hover {
        color: #df111b;
    }
    
    .inner .insideLeftContent .box.sidebar { padding-top: 20px; }

    .leftContent .box, .rightContent .box { padding: 0; }

    nav.menu > ul li a .triangle {
        margin: 0;
        padding: 1px 0;
    }

    .socialFixed {
        top: 40%;
        left: auto;
        right: 0;
    }

    .fixedSocialTools a {
        border-radius:  10px 0 0 10px;
        text-align: left;
        margin-left: auto;
    }

    .fixedSocialTools a img { 
        width: 22px;
        height: 22px;
    }
    
    /* only for dark inner sidebar backgrounds. */
    /* .inner .leftContent .insideLeftContent a,
    .inner .leftContent .insideLeftContent a:hover,
    .inner .leftContent .insideLeftContent h2,
    .inner .leftContent .insideLeftContent h3,
    .inner .leftContent .insideLeftContent h4,
    .inner .leftContent .insideLeftContent h5,
    .inner .leftContent .insideLeftContent .body,
    .inner .rightContent .insideRightContent a,
    .inner .rightContent .insideRightContent a:hover,
    .inner .rightContent .insideRightContent h2,
    .inner .rightContent .insideRightContent h3,
    .inner .rightContent .insideRightContent h4,
    .inner .rightContent .insideRightContent h5,
    .inner .rightContent .insideRightContent .body {
        color: white;
    } */ 

    .inner .insideLeftContent {
        border-right: var(--dividerBorder);
        height: 100%;
        padding-right: 40px;
    }

    footer.main .footer-top {
        padding: 20px 100px;
    }

    footer.main .footer-top .ft-col:nth-of-type(2) {
        margin-top: 10px;
        padding: 0 10px;
    }

    .main-contact {
        padding: 10px 0;
    }

    .search.bar .fieldAndButton .searchMag {
        font-size: 16px;
        color: #000;
        line-height: 20px;
        height: 20px;
        width: 20px;
    }

    .search.bar .fieldAndButton .searchMag:hover {
        color: #df111b;
    }

	.breadcrumbs > a:first-of-type:hover { text-decoration: none !important; }

    .inner .breadcrumbs {
        display: flex;
        /* padding-bottom: 22px;
        margin-top: -4px; */
        margin-bottom: 20px;
		justify-content: left;
		align-items: center;
        margin: 40px 95px 0px;
    }

    .inner .breadcrumbs a {
        padding-right: 10px;
        text-decoration: none;
        /* margin-right: 10px; */
    }

    .inner .breadcrumbs a > span,
    .inner .breadcrumbs h2 {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        transition: color 0.3s ease;
        text-transform: uppercase;
    }

    .inner .breadcrumbs a::after {
        content: "\f0da";
        font-family: "Font Awesome 6 Pro";
        padding-left: 7px;
        font-weight: 700;
        position: relative;
        bottom: 0px;
    }

    .inner .breadcrumbs a:hover {
        color: #000;
    }

    .inner .breadcrumbs nav ul {
        list-style: none;
        /* display: flex;
        flex-direction: row; */
        padding-left: 0;
    }

    .inner .breadcrumbs nav ul li {
        margin: 0;
        float: left;
    }

    .inner .breadcrumbs nav ul > li:last-of-type > a {
        color: #000;
    }

    .inner .breadcrumbs nav ul > li:last-of-type > a::after {
        content: none;
    }

    .inner .breadcrumbs nav ul li > span {
        display: none;
    }

    .inner .mainContent { min-height: 300px; }


    div.banner {
        position: relative;
    }

    .topbar2 div.titlewrap {
        padding: 0px;
        max-width: 100%;
        display: block;
        text-align: center;
        position: absolute;
        top: 10px;
        /* top: 50%;
        -webkit-transform: translateY(-50%); */
        left: 40px;
        /* right: 20px; */
        z-index: 10;
    }

    .topbar2 div.titlewrap a.title {
        font-family: var(--designfont);
        font-size: 22px;
        line-height: 100%;
        padding: 0;
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        text-shadow: 2px 2px rgba(0,0,0,0.2);
        background-size: 0;
    }
    .topbar2 a.title img { max-width: 100%; }

    .searchSocial {
        background: #f7f7f7;
        padding: 33px 40px 33px 230px;

        position: relative;
        bottom: auto;
        top: auto;
        right: auto;
        left: auto;

        word-spacing: normal;
        line-height: normal;
        text-align: right;
        z-index: 9;
    }

    .searchSocial .newSocialTools {
        float: none;
        display: inline-block;
        margin-right: 8px;
    }

    .searchSocial .searchPositioner {
        float: right;
        display: inline-block;
        margin-right: 0;
    }

    .searchSocial .socialTools a { display: inline-block; }
    .searchSocial .search.bar { margin-bottom: 0; }

    .searchSocial .openweather, .searchSocial .airquality {
        text-transform: capitalize;
        float: left;
        display: inline-block;
        margin-right: 15px;
        margin-top: 3px;
        vertical-align: top;
    }

    .searchSocial .openweather i, .searchSocial .airquality i { color: #600; }
    .searchSocial .airquality { margin-left: 20px; }

    .searchSocial .openweather a,
    .searchSocial .airquality {
        color: #000;
        font-size: 12pt;
        font-family: var(--designfont);
        font-weight: bold;
        text-decoration: none;
    }

    .searchSocial .openweather a:hover {
        color: #000;
        text-decoration: underline;
    }

    .container.content div.left,
    .container.content div.cyclerSlide {
        float: left;
        margin: 10px 25px 15px 0;
        clear: left;
    }
    .container.content div.right {
        float: right;
        margin: 10px 0 15px 25px;
        clear: right;
    }

    .inner .image.right {
        margin: 0 0 15px 25px;
      }

    .topbar, .spacer, .navDrop, .searchDrop { display: none; }
    .topbar2, .spacer2, .searchSocial, .bannerbar { display: block; }
    .container.content .galleryBox div.photoFrame img.bigImage.fitHeight {
        height: 100% !important;
        width: auto !important;
    }
    .filmstripbar_owl { padding: 5px 135px;}
    .filmstrip_owl div.item a { line-height: 90px; }
    .filmstrip_owl div.item a img { height: 90px; }
    .filmstrip_owl div.item a div { padding: 10px 0; }
    .filmstrip_arrowwrap { display: block; }


    .desktoponly { display: block; }
    .notifications .notification { font-size: 12pt; }

    .searchSocial {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: space-between;
    }

    .searchSocial .main-contact span {
        display: none;
    }

    .searchSocial .main-contact a {
        color: #000;
        text-decoration: none;
        transition: color 300ms ease;
        font-weight: 400;
        background-repeat: no-repeat;
        background-image: linear-gradient(transparent calc(100% - 2px),  #df111b 2px);
        background-image: -ms-linear-gradient(transparent 95%, #df111b 2px);
        -webkit-transition: .5s cubic-bezier(.215, .61, .355, 1);
        transition: .5s cubic-bezier(.215, .61, .355, 1);
        background-size: 0 96%;
    }

    .searchSocial .main-contact a:hover {
        color: #df111b;
        text-decoration: none;
        background-size: 100% 96%;
    }

    .inner .leftContent {
        width: 40%;
    }

    .inner .rightContent {
        width: 100%;
    }

    .inner .mainContent.hasLeft.hasRight,
    .inner .mainContent.hasLeft {
        width: 60%;
    }

    #backTop { 
        bottom: 50px !important;
        right: 50px !important;
    }

    footer.main ul > li {
        margin: 10px 0;
    }

    footer.main .footer-top .ft-col:nth-of-type(2) {
        padding: 10px 0;
    }

    .slidercontainer .titlebox {
        inset: 50% auto auto 50% !important;
    }

    .slidercontainer .titlebox .title { 
        font-size: 50px !important; 
        line-height: unset;
    }

    .home .box.B_BOXES .responsivebox,
    .home .box.promotion.B_LIST.HA_Boxes .responsivebox,
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox {
        margin-left: 0;
        margin-right: 0;
        max-width: unset;
    }

    .docmanContainer .docmanSearch { width: 400px; }

    .docmanContainer #docmanSearchButton {
        margin: 20px 0;
    }
}

@media (min-width:1200px) {
    .nogroup.Below {
        padding: 40px 100px;
    }

    .topbar2 div.titlewrap { left: 100px; }
    .searchSocial {
        padding: 33px 100px 33px 230px;
    }
    nav.horizontal.block { padding: 0 100px; }

    footer.main .footer-top {
        display: flex;
        justify-content: space-between;
        padding: 40px 100px;
    }

    footer.main ul {
        column-count: 2;
        text-align: left;
    }

    footer.main ul > li {
        margin: 3px 0;
    }

    footer.main h3 {
        text-align: left;
    }

    footer.main .text, footer.main .text2, footer.main .text3 { padding: 1px 0; }

    footer.main .text, footer.main .text2, footer.main .text3, footer.main .text4,
    footer.main .text5, footer.main .text6, footer.main .verticalLogo_text a {
        text-align: left;
    }

    .mainContent .B_MEET .meetings.search .fieldAndButton .searchField {
        width: 300px;
    }

    .content { padding: 0 100px; }

    .inner .content { padding: 0 100px; }

    .inner .rightContent,
    .inner .leftContent {
        width: 25%;
    }

    .inner .mainContent.hasLeft {
        width: 75%;
    }

    .inner .mainContent.hasLeft.hasRight {
        width: 50%;
    }

    .docmanContainer .docmanSearch { width: 300px; }
    .docmanContainer #docmanSearchButton { margin: 10px 20px; }
}

@media (min-width:1400px) {

    .searchSocial .main-contact span {
        display: inline;
        padding-left: .25rem;
    }

    .docmanContainer .docmanSearch { width: unset; }

    nav.horizontal.block > ul > li > ul,
    nav.horizontal.menu>ul ul ul {
        width: 300px !important; 
    }
}

@media (min-width:1600px) {
    .content { padding: 0 200px; }
    .inner .content { padding: 0 200px; }

    .topbar2 div.titlewrap { left: 200px; }
    .searchSocial { padding: 33px 200px 33px 350px; }

    .nogroup.Below,
    nav.horizontal.block,
    footer.main .footer-top,
    footer.main .footer-bottom { 
        padding-left: 200px; 
        padding-right: 200px; 
    }
}
