@import url("../../parts/styles_resp/global.css");

html { height: 100%; }
html * { box-sizing: border-box; margin: 0; padding: 0; }

body.home, body.inner {
    height: 100%;
    background: #fff;
}

.allContainer {
    padding: 0;
    margin: 0;
    zoom: 1;
}

/* ------------- MAIN VARIABLES ------------- */
:root {
    --designfont: 'Open Sans', sans-serif;
    --secondaryfont: 'Aleo', serif;

    --majortitlecolor: #00583C;

    --navbg: #555;
    --navcolor: #353535;
    --navactivebg: #353535;
    --navactivecolor: #00583C;
    --slabbg: rgba(0,0,0,0.9);
    --slabcolor: #fff;
    --slabactivebg: #662600;
    --slabactivecolor: #fff;

    /* Notifications */
    --notificationLowBG: #225896;
    --notificationLowColor: #fff;
    --notificationLowMoreBG: #112945;
    --notificationLowMoreColor: #fff;

    --notificationMediumBG: #00852E;
    --notificationMediumColor: #fff;
    --notificationMediumMoreBG: #013413;
    --notificationMediumMoreColor: #fff;

    --notificationHighBG: #AA2218;
    --notificationHighColor: #fff;
    --notificationHighMoreBG: #55100B;
    --notificationHighMoreColor: #fff;

    /* Mobile nav */
    --mobiletopbarbg: #00583C;
    --mobiletopbarcolor: #fff;

    --mobileDropBG: #00583C;
    --mobileLinkColor: #fff;
    --mobileSubLinkColor: #fff;
    --mobileSubSubLinkColor: #fff;
    --mobileBorder: solid 1px rgb(255, 255, 255, .5);
    --mobileDropShadow: block; /* None or block */
    --mobileIconWeight: 400; /* Light 100 - Regular: 400 - Solid: 900 */
    --mobileIconColor: #fff;

    /* Accordion */
    --accordioncolor: #00583C;
    --accordionbg: #D7E2E1;
    --accordionplus: #00583C;
    --accordioncolorhover: #fff;
    --accordionbghover: #00583C;
    --accordionplushover: #fff;
    --accordionborder: none;
    --accordionradius: 0;

    /* Calendar Bar, Date Circle, Meeting Date, Documents title/icons */
    --main: #662600;
    --maincolor: #fff;

    /* New Calendar */
    --newcalBarBG: #d9d9d9;
    --newcalBarColor: #333;
    --newcalArrows: #d9d9d9;
    --newcalArrowColor: #333;
    --newcalTodayBG: #d9d9d9;
    --newcalTodayColor: #333;
    --newcalEverydayColor: #333;
    --newcalEverydayBG: #fff;
    --newcalDateCircleColor: #333;
    --newcalDateCircleBG: #d9d9d9;
    --newcalEventBorder: #d9d9d9;
    --newcalListBorder: 1px solid #d9d9d9;
    --newcalBodyColor: #333;
    --newcalTimeColor: #333;
    --newCalWeight: 600;
    --newCalCloseHover: #333;

    /* Buttons ( Read More, Accordion Expand All, Forms Submit, etc) */
    --buttoncolor: #fff;
    --buttonbg: #225896;
    --buttoncolorhover: #fff;
    --buttonbghover: #00583C;
    --buttonborder: none;
    --buttonradius: 10px;
    --buttontexttransform: uppercase;
    --buttonfont: 700 18px 'Open Sans', sans-serif;
    --buttonpadding: 10px 20px;

    /* Plugin Headings */
    --promotionHeading: 700 20px 'Open Sans', sans-serif;

    /* Border Accents */
    --borderLine: 1px solid #ccc;
}

a#skipLink { top: -43px; }

#backTop {
    font-size: 18px;
    transition: all 300ms ease;
    background: #fff;
    color: #00583C;
    border: 1px solid #fff;
    box-shadow: 0px 3px 6px #00000029;
}

#backTop:hover {
    background: #00583C;
    color: #fff;
    border: 1px solid #00583C;
}

.desktoponly { display: none; }
.extraTopBorder {
    display: none;
    height: 10px;
    font-size: 0;
}

/* ------------- ALERTS ------------- */
.alert { background: var(--notificationLowBG); color: var(--notificationLowColor); }
.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; }

.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); }

.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: normal normal bold 16px var(--designfont) !important;
    display: inline-flex;
    min-width: 173px;
    min-height: 34px;
    border-radius: 5px !important;
    letter-spacing: 0px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.alertcontainer button.closealerts { font: normal normal 600 16px var(--designfont); }
.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: underline;}
.alert { font: normal normal 600 16px var(--designfont); }
.alertcontainer { z-index: 2000; }

/* ------------- ALERT END ------------- */

.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: #353535;
    background: white;
}

.inner .contentBG { margin-top: 0px; }

.searchSocial { display: none;}

/* ------------- MAIN HEADER ------------- */
/* 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;
}

.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; font-size: 11px; }
.topbar .title {
    display: inline-block;
    font-family: var(--designfont);
    color: var(--majortitlecolor);
    width: 100%;
}

.topbar .title img {
    max-height: 50px;
    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 20px;
    display: inline-flex;
    width: 100%;
}

nav.top.block ul > li { padding: 0 20px;}

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: 5px 0;
    font-size: 16px;
    color: var(--mobiletopbarcolor);
    text-align: center;
}

nav.top.block li .titlewrap a { text-align: left;}

nav.top.block li a > div, .council-meeting-mobile span { font-size: 14px; display: block; text-transform: uppercase; font-weight: 700; }
nav.top.block li:last-child { border-right: none; }
nav.top.block li a:focus { outline: 1px dashed #fff; }
nav.top.block li a > * {
    display: inline-block;
    vertical-align: middle;
}

nav.top.block li a i {
    color: #EFB239;
    font-size: 16px !important;
}

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: var(--mobileDropBG);
    position: relative;
}
.searchDrop { 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: block;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
    letter-spacing: 0.45px;
}

/* Mobile Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>a {
    color: var(--mobileSubLinkColor);
    font-weight: 400;
    padding-left: 1.5rem;
    font-size: 18px;
    letter-spacing: 0;
}

/* Mobile Sub Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>ul>li>a {
    padding-left: 2.5rem;
    font-size: 16px;
    color: var(--mobileSubSubLinkColor);
    font-weight: 400;
    letter-spacing: 0;
}

/* Mobile Sub Sub Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>ul>li>ul>li>a {
    padding-left: 3.5rem;
    font-size: 16px;
    color: var(--mobileSubSubLinkColor);
    font-weight: 400;
}

/* Mobile Sub Sub Sub Pages */
.navDrop nav.block.mobilemenu>ul>li>ul>li>ul>li>ul>li>ul>li>a {
    padding-left: 3.5rem;
    font-size: 14px;
    color: var(--mobileSubSubLinkColor);
    font-weight: 400;
}

.navDrop nav.block.mobilemenu a:focus, .navDrop nav.block.mobilemenu span:focus { outline: 1px dashed #fff; }

.navDrop nav.block.mobilemenu .socialTools a { padding: 5px 0 5px 5px; }
.navDrop nav.block.mobilemenu li span.plus {
    margin-top: 2px;
    padding: 8px 0 8px 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: 900 !important;
    color: #00583C;
}

.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 0;
}

.navDrop nav.block.mobilemenu li.openweather a,
.navDrop nav.block.mobilemenu li.airquality  { text-transform: capitalize; color: var(--mobileLinkColor); font-size: 16px; display: inline-block; padding: 0; font-weight: 400; letter-spacing: 0.32px; }
.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; font-weight: 400 !important; margin-right: 5px; }

.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: #353535;
    padding: 5px 10px;
    width: 80%;
    width: calc(100% - 50px);
    border: 1px solid #707070;
    border-radius: 25px;
}

.searchDrop .mobilesearch .fieldAndButton .searchMag {
    font-size: 20pt;
    float: right;
    height: 35px;
    width: 35px;
    line-height: 40px;
    vertical-align: middle;
    color: var(--mobiletopbarcolor);
}
.searchDrop .mobilesearch .fieldAndButton .searchMag:focus { outline: 1px dashed #000; }
/* ------------- MOBILE NAV END ------------- */

/* search results */
h2.search { padding: 1ex; font-size: 130%; }

.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;}


.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; }
.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; }

/* ------------- TYPOGRAPHY ------------- */
body {
    font-family: "Open Sans", sans-serif;
    font-family: var(--designfont);
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: #fff;
    line-height: 25px;
}

ul, ol { padding-left: 1.5em; }
hr { clear: both; margin: .5rem 0;  border-bottom: var(--borderLine); border-top: none; border-left: none; Border-right: none; }
p { margin: 0 0 1.5rem 0; }

/* Icon Weight */
/*i { font-weight: 400 !important; } /* 400(reg), 900 (solid) */

/* Links  */
a {
    color: #00583C;
    font-weight: 700;
    text-decoration: none;
    transition: all 300ms ease;
}

a:hover { text-decoration: underline; }
a:focus { outline: 1px dashed #555; }
input:focus { background: #eee; color: #000; }

/* Headings */
h1, h2, h3.subtitle, h3, h4, h5, h6 {
    font-family: var(--mainFont);
    font-size: 24pt;
    font-weight: normal;
    line-height: 115%;
    padding: 5px 0;
    margin: 0;
    text-align: left;
    color: #333;
}

h1 {
    font: 700 30px var(--secondaryfont);
    text-transform: uppercase;
    letter-spacing: 0;
    color: #00583C;
}

h2 { 
    font: 700 25px var(--secondaryfont);
    text-transform: uppercase;
    letter-spacing: 0; 
    color: #00583C;
}

h3, h3.subtitle { 
    font: 700 20px var(--secondaryfont);
    text-transform: uppercase;
    letter-spacing: 0; 
    color: #00583C;
}

h4 { 
    font: 700 18px var(--secondaryfont);
    text-transform: capitalize;
    letter-spacing: 0; 
    color: #00583C;
}

h5 { 
    font: 700 18px var(--designfont);
    text-transform: capitalize;
    letter-spacing: 0;
    color: #00583C;
}

h6 { 
    font: 700 16px var(--designfont);
    text-transform: capitalize;
    letter-spacing: 0;
    color: #00583C;
}

/* Promotion Headings */
.summaryDisplay h3 a, .headlineDisplay h3 a, .item.summaryDisplay h2 a, article.summaryDisplay h2 a,
.item.summaryDisplay h2, article.summaryDisplay h2, .DIR_PER article.summaryDisplay h2 a,
.accordion article.summaryDisplay h2, section article.summaryDisplay div.details h3, .eventlistitem a, .box.promotion.B_PR .summarybox h3 a {
    font: var(--promotionHeading) !important;
    text-decoration: none;
    color: #164D47;
    text-transform: capitalize;
}
.summaryDisplay h3 a:hover, .headlineDisplay h3 a:hover, .item.summaryDisplay h2 a:hover, article.summaryDisplay h2 a:hover,
.DIR_PER article.summaryDisplay h2 a:hover, .eventlistitem a:hover, .box.promotion.B_PR .summarybox h3 a:hover { text-decoration: underline; color: #225896; }

.field.inline > h4 { font-size: 12pt; padding-right: 5px; }

article, section, article main.body, section main.body {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.item.summaryDisplay, article.summaryDisplay, section.DIR_BUS.accordion article.summaryDisplay .flexit, section.DIR_BUS.accordion article.summaryDisplay, section.DIR_PER.box article.summaryDisplay, section.DIR_PER.list article.summaryDisplay {
    margin: 0;
    padding: 5px 0;
}

.summaryDisplay h3 a, .headlineDisplay h3 a, .item.summaryDisplay h2 a, article.summaryDisplay h2 a {
    margin: 0;
    padding: 5px 0;
}

/* Buttons */
div.readmore.small {
    bottom: 0;
    margin-top: 25px;
}

div.readmore.small a {
    display: inline-flex;
    padding: var(--buttonpadding);
    background: var(--buttonbg);
    color: var(--buttoncolor);
    border: var(--buttonborder);
    border-radius: var(--buttonradius);
    font: var(--buttonfont);
    text-transform: var(--buttontexttransform);
    box-shadow: 0px 3px 6px #00000029;
    text-decoration: none;
    transition: all 300ms ease;
    min-width: 204px;
    min-height: 47px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

div.readmore.small a:hover, div.readmore.small a:focus {
    text-decoration: none;
    background: var(--buttonbghover);
    color: var(--buttoncolorhover);
}
.inner div.readmore.small a { min-width: 180px; }
/* ------------- FOOTER ------------- */
footer.main {
    position: relative;
    padding: 0;
    background: #00583C;
    color: white;
    text-align: center;
    display: block;
    min-height: 200px;
    margin-top: -2px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: fit-content;
}

footer .footerlogo {
    /* position: absolute;
    top: -20px; left: calc(50% - 100px);  */
}

footer.main h4 {
    color: #fff;
    margin-bottom: 10px;
    font: normal normal bold 16px var(--secondaryfont);
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 0;
    text-align: center;
}

footer.main .text, footer.main .text2, footer.main .text3, footer.main .text4,
footer.main .text5, footer.main .text6, footer.main .text7, footer.main .text8 {
    font-family: var(--designfont);
    vertical-align: top;
    color: #fff;
    text-align: center;
    padding: 2px 0;
    display: block;
    white-space: pre-wrap;
}

footer.main .text {
    color: #fff;
    font-size: 16px;
}

footer .footertext {
    /* display: inline-block; */
}

footer.main a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}

footer.main a:hover {
    color: #fff;
    text-decoration: underline;
}
footer.main a:focus { outline: 1px dashed #fff; }
footer.main .verticalLogo_text, footer.main .verticalLogo_text a, footer.main .copyright span {
    text-align: center;
    margin: 0;
    padding: 4px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}
.footerBottom .text5 { text-transform: uppercase; }

/* ------------- SECONDARY FOOTER ------------- */
.footersecondary {
    /* background: #ebf1f7 url(images/footerbg.jpg) no-repeat bottom center; */
    background: transparent;
    color: #333;
    padding: 30px 30px 30px 50px;
    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: #333;
    font-family: var(--designfont);
    font-size: 18px;
    padding: 0;
}

.footersecondary > nav.block > ul > li > a {
    font-family: var(--designfont);
    font-size: 24px;
    color: #333;
    text-align: left;
    padding: 10px 0;
    text-decoration: underline;
}

.footersecondary > nav.block > ul > li li > a {  text-decoration: underline; }
.footersecondary > nav.block > ul, .footersecondary > nav.block > ul ul { padding-left: 0; }

/* ------------- MENU DROP DOWNS ------------- */
.topbar2 {
    display: none;
    z-index: 10;
}

/* all block */
nav.block a, nav.subsections a {
    font-family: var(--designfont);
    font-size: 14pt;
    padding: 5px 8px;
}

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: relative;
    bottom: auto; left: auto; right: auto;
    display: block;
    padding: 10px 40px 10px 40px;
    margin: 0 40px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
}

nav.horizontal.block>ul {
    padding: 10px 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(--navcolor);
    border: none;
    margin-right: 15px;
    text-transform: uppercase;
    font: normal normal bold 20px var(--designfont);
    letter-spacing: 0.5px;
    padding: 10px 0;
}

nav.horizontal.block>ul>li:last-child>a { margin-right: 0; }

nav.horizontal.block>ul>li.current>a, nav.horizontal.block>ul>li.open>a,
nav.horizontal.block>ul>li>a:hover, nav.horizontal.block>ul>li>a:focus {
    background: none;
    color: var(--navactivecolor);
    text-decoration: underline;
}

nav.horizontal.block li li>a {
    text-align: left;
    margin-bottom: 0;
    transition: color 300ms ease;
    padding: 7px 25px 7px;
    font: normal normal 400 18px var(--designfont);
    letter-spacing: 0px;
    color: #fff;
}
nav.horizontal.block li li li>a { font-size: 16px; }

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: #032C20;
    text-decoration: none;
    color: #fff;
}
nav.horizontal.block li li>a:focus { outline: 1px dashed #fff; }
nav.horizontal.block>ul>li.open>a { position: relative; z-index: 1002; }

nav.horizontal.menu>ul ul {
    background: #00583C;
    box-shadow: 0px 3px 6px #00000029;
    width: 240px;
    padding: 10px 0;
}

nav.block.menu>ul .triangle {
    margin-top: 4px;
    color: inherit;
    opacity: 1.0;
}

nav.horizontal.block.menu>ul>li>a>.triangle { margin-top: -2px; }

nav.block.menu>ul .triangle:focus { outline: 1px dotted #333; }
nav.block.menu>ul ul .triangle:focus { outline: 1px dotted #fff; }

nav.subsections h2 { text-align: left; }
nav.subsections h2 a { font-size: inherit; }

nav.subsections ul { list-style-type: none; padding: 0; }
nav.subsections ul ul { padding-left: 20px; margin-bottom: 0; }
nav.subsections ul ul a { font-size: 16px; font-weight: 400; color: #353535; }

/* Sub Sub Pages */
nav.subsections ul ul ul a { font-size: 14px;}

nav.subsections a {
    text-decoration: none;
    line-height: 1.2;
    font-weight: bold;
    padding: 0;
    font-size: 18px;
}
nav.subsections a:hover { text-decoration: underline; color: #00583C; }
nav.subsections li { padding: 2px 0; }

nav.subsections li.actual > a { text-decoration: underline; color: #00583C; }

/* Slab */
/* Border In Menu - Uncomment if needed */
nav.slab.horizontal.block.slabtext > ul > li.onecol > ul > li:after,
nav.slab.horizontal.block > ul > li.twocol > ul > li:after,
nav.slab.horizontal.block > ul > li.threecol > ul > li:after,
nav.slab.horizontal.block > ul > li.fourcol > ul > li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    border-right: 1px solid rgb(255, 255, 255);
}

nav.slab.horizontal.block > ul > li.onecol > ul > li:last-child:after,
nav.slab.horizontal.block > ul > li.twocol > ul > li:last-child:after,
nav.slab.horizontal.block > ul > li.threecol > ul > li:last-child:after,
nav.slab.horizontal.block > ul > li.fourcol > ul > li:last-child:after {
    content: normal;
}

/* 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: var(--slabbg);
    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: var(--slabactivebg);
    color: var(--slabactivecolor) !important;
    text-decoration: underline;
    /* border-bottom: 2px solid #9bbf4f; */
}
nav.horizontal.block.menu > ul > li > a > .triangle { color: #00583C; }

/* ------------- MENU DROP DOWNS END ------------- */

/* Breadcrumb and Resizer */
.inner-header-container { display: none; }

/* ------------- BOXES ------------- */
.box.B_BOXES,
.box.promotion.B_LIST.HA_Boxes,
.box.promotion.B_LIST.HA_Boxes_Top { padding: 0; margin: 0; }
.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; */
    border-radius: 0;
    height: auto !important;
}
.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 15px 15px 0;
}
.box.B_BOXES .responsivebox h2,
.box.B_BOXES .responsivebox h2 a,
.box.promotion.B_LIST.HA_Boxes .responsivebox h2,
.box.promotion.B_LIST.HA_Boxes .responsivebox h2 a,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a {
    font-size: 16pt;
    padding: 0 0 8px 0;
}

.box.B_BOXES .responsivebox h2 a:hover, .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a:hover,
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a:hover {
    text-decoration: underline;
}

.box.promotion.HA_Boxes_Top .responsivebox div.image img { vertical-align: bottom;}

/* News Image Max Size */
.inner .B_PR article.summaryDisplay .image.left {
    max-width: 280px !important;
}

/* calendar */
.calMonth table {
    background: #333;
    color: #fff;
    border: none;
    border-spacing: 1px;
    border-collapse: separate;
    font-size: 90%;
}

.calMonth .calMonthName, .calMonth .calYear { color: #333; }

._moderncalendar .calMonth .calMonthName, ._moderncalendar .calMonth .calYear {
    color: #00583C;
    font: normal normal bold 18px var(--secondaryfont);
    text-transform: uppercase;
}

.calMonthHeading {
    background: #fff;
    color: #333;
    border: none;
    font-size: 90%;
    border: 1px solid #333;
    border-bottom: none;
}

._moderncalendar .calDayHeading th {
    background: #00583C;
    color: var(--maincolor);
    padding: 8px 0;
    font-weight: 600;
}
._moderncalendar .calMonth .chevron { color: #00583C; }
._moderncalendar .calMonthHeading { margin-bottom: 10px; }
.calDayHeading span {
    font-size: 18px;
    font-weight: bold;
}

.calDayHeading th {
    background: #fff;
    color: #555;
}

.calDay.calGrayDay {
    background: #eee;
    color: #333;
}
.calDay {
    background: #fff;
    color: #333;
    font-weight: bold;
}
table.calendarTable .calDay a hr { display: none; }
table.calendarTable .calDay a.eventLink { margin: 1px; color: #00583C; text-decoration: none; }
table.calendarTable .calDay a.eventLink:hover { text-decoration: underline; color: #225896; }

.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; 
    max-width: 30px;
}

.calToday { background-color: #fff; filter: none; }

._moderncalendar .calDay.calEvent .calDayNum {
    background: #225896;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

._moderncalendar .dayeventscontainer { z-index: 1;}

.calToday .calDayNum {
    background: #225896;
    color: #fff;
}

.home .circleDate { display: none; }

.inner .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: #225896;
    color: var(--maincolor);
    text-transform: uppercase;
    margin: 0;
}
.circleDate .month { font-size: 14px; }

/* 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: 20px;
    /* overflow: hidden; */
    margin: 5px 0;
    border-radius: 10px;
    background: #fff;
    min-height: 95px;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.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;}

.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;
}

.inner .slider_owl div.item, .singlepic { height: 300px; }

.singlepic .description, .slider_owl .description {
    box-sizing: border-box;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    padding: 0;
    color: #eee;
    text-align: center;
    font-size: 14pt;
}

.slider_owl .description a, .singlepic .description a {
    color: #fff;
    text-decoration: underline;
}

.slider_owl .description a:hover, .singlepic .description a:hover {
    color: #ddd;
}

.slider_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.slider_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 5;
    gap: 5px;
}
.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: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 18px;
    color: #00583C;
    z-index: 5;
    padding: 5px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 5px;
    border: 2px solid #fff;
    background: #fff;
    transition: background 300ms ease, color 300ms ease;
    box-shadow: 0px 3px 6px #00000029;
}
.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: #fff; background: #00583C; outline: none; border: 2px solid #00583C; }
.slider_arrowwrap span.arrowplay { display: none; }

.filmstrip_wrap1 {
    position: relative;
    font-size: 0;
    line-height: normal;
    z-index: 2;
    margin-top: -60px;
}
.filmstripbar_owl {
    padding: 5px 50px;
    overflow: hidden;
    white-space: nowrap;
}
.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 #555; }
.filmstrip_owl div.item a:hover { text-decoration: underline; }

.filmstrip_owl div.item a img {
    height: 32px;
    display: inline-block;
    vertical-align: middle;
}
.filmstrip_owl div.item a div {
    padding: 10px 0 0;
    display: block;
    vertical-align: middle;
    font-family: var(--designfont);
    white-space: normal;
    font-size: 18px;
    line-height: 110%;
    color: #434A57;
    font-weight: 600;
}
.filmstrip_owl div.item a:hover div { text-decoration: underline; color: #00583c; }
.filmstrip_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.filmstrip_arrowwrap .controls {
    display: flex    ;
    justify-content: space-between;
    position: absolute;
    bottom: 50px;
    right: 0;
    z-index: 0;
    padding: 0 10px;
    width: 100%;
}
.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: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 18px;
    color: #00583C;
    z-index: 5;
    padding: 5px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 0;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    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: #00583C; outline: none; border: 2px solid #00583C; }
.filmstrip_arrowwrap span.arrowplay, .filmstrip_arrowwrap span.arrowpause { display: none; }

.carousel_wrap1 {
    font-size: 0;
    line-height: normal;
}

.bigCarouselTitle {
    font-family: var(--designfont);
    font-size: 24pt;
    text-align: center;
    padding: 10px 20px 0;
}

.bigCarouselSubTitle {
    font-family: var(--designfont);
    font-size: 18pt;
    text-align: center;
    padding: 0 20px 10px;
}

.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: #333;
}
.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;
}
.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: #333;
    z-index: 5;
    padding: 5px;
    border-radius: 50%;
    line-height: 100%;
    margin-left: 5px;
    border: 2px solid #333;
    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 {
    color: var(--buttoncolor);
    border-radius: var(--buttonradius);
    font: var(--buttonfont);
    text-transform: var(--buttontexttransform);
    background: var(--buttonbg);
    border: var(--buttonborder);
    padding: var(--buttonpadding);
    margin: 20px 0;
    transition: all 300ms ease;
}

.accordion button.accordionall:hover {
    color: var(--buttoncolorhover);
    background: var(--buttonbghover);
}

.accordion article.summaryDisplay h2 {
    padding: 10px 15px;
    line-height: 1.2;
    font-size: 18px !important;
    transition: background 300ms ease;
    color: var(--accordioncolor);
    background: var(--accordionbg);
    border: var(--accordionborder);
    border-radius: var(--accordionradius);
    transition: all 300ms ease;
    text-transform: capitalize !important;
    display: block;
}

.accordion article.summaryDisplay h2:hover {
    color: var(--accordioncolorhover);
    background: var(--accordionbghover);
}

.accordion article.summaryDisplay .description { padding: 10px;}
.accordion article.summaryDisplay h2 button { color: var(--accordionplus);}
.accordion article.summaryDisplay h2:hover button { color: var(--accordionplushover);}

.fa.fa-minus-square-o, .fa.fa-plus-square-o { font-weight: 900; }

.B_MEET .meetings.search .fieldAndButton .searchField {
    padding: 10px;
    font-size: 14px;
}

.B_MEET .boxdate {
    background: var(--main);
    color: var(--maincolor);
    border: none;
}

.B_MEET .boxdate.done {
    background: #225896;
    color: var(--maincolor);
    border: none;
    border-radius: 10px;
}

.B_MEET .meetings.search .button {
    padding: var(--buttonpadding);
    margin-top: 20px;
    cursor: pointer;
}

.B_MEET .meetings.search .button:hover {
    background: var(--buttonbghover);
    color: var(--buttoncolorhover);
}
.B_MEET .boxdate .day { font-weight: 700; }

.B_MEET .meetings.search .fieldAndButton .searchField { padding: 13px 10px;}

section.DIR_PER article.summaryDisplay div.titlepositionabout > h2 { text-align: left;}

section.DIR_PER article.summaryDisplay div.titlepositionabout, section.DIR_PER.accordion article.summaryDisplay .flexit .details { align-content: center; }

.DIR_PER article.summaryDisplay h2 a {
    font-family: var(--secondaryfont) !important;
    font-weight: 700 !important;
    color: #00583C;
    /* margin-bottom: 15px; */
    display: block;
    font-size: 25px !important;
}

.DIR_PER h4 { 
    font-size: 16px;
    font-weight: 600;
    line-height: 1; 
    color: #333;
}

section.DIR_BUS.boxes>article, section.DIR_PER.boxes>article {
    border: var(--borderLine);
}

section.DIR_PER.box article.summaryDisplay, section.DIR_PER.list article.summaryDisplay {
    border-bottom: var(--borderLine);
}

section.DIR_PER.box article.summaryDisplay:last-of-type, section.DIR_PER.list article.summaryDisplay:last-of-type { border-bottom: none; }

section.DIR_PER.boxes article.summaryDisplay, section.DIR_PER.boxes article.summaryDisplay:last-of-type { border-bottom: var(--borderLine);}

.galleryBox span.arrowleft, .galleryBox span.arrowright, .galleryBox span.arrowpause, .galleryBox span.arrowplay {
    font-size: 15px;
}
.galleryBox div.thumbnails ul.page.current {
    display: flex;
    justify-content: center;
    align-items: center;
}
section.DIR_BUS.boxes, section.DIR_PER.boxes { margin-top: 15px; }

.namesearchbox > div { background: #fff;}

div.sffield input, div.sffield select, div.sffield.radios, div.sffield.checkboxes, div.sffield textarea {
    background: #D7E2E1;
}

/* Documents content type */
.mainContent .docmanContainer { padding: 30px 0;}

.docmanContainer .docmanSearch { background: #fff; padding: 7px 10px; }

.docmanContainer .breadcrumb, .docmanContainer h3.searchTitle, .docmanContainer .subfolders > div > div > i {
    color: var(--majortitlecolor);
}

.docmanContainer #docmanSearchButton {
    position: relative;
    top: 0;
    border-radius: 5px;
    padding: var(--buttonpadding);
    transition: background 200ms ease, color 200ms ease;
    color: var(--buttoncolor);
    background: var(--buttonbg);
    border-radius: var(--buttonradius);
    font: var(--buttonfont);
    text-transform: var(--buttontexttransform);
    border: var(--buttonborder);
}

.docmanContainer #docmanSearchButton:hover {
    color: var(--buttoncolorhover);
    background: var(--buttonbghover);
}

/* Forms Button */
form input[type='button'], form input[type='submit'] {
    padding: var(--buttonpadding);
    color: var(--buttoncolor);
    background: var(--buttonbg);
    border-radius: var(--buttonradius);
    font: var(--buttonfont) !important;
    text-transform: var(--buttontexttransform);
    border: var(--buttonborder);
    transition: all 300ms ease;
}

form input[type='button']:hover, form input[type='submit']:hover {
    color: var(--buttoncolorhover);
    background: var(--buttonbghover);
}

/* Image Gallery button align */
.galleryBox .arrowleft, .galleryBox .arrowright,
.galleryBox .arrowpause, .galleryBox .arrowplay {
    color: #00583C;
    border: 1px solid #fff;
    background: #fff;
    transition: all 300ms ease;
    margin: 0 3px;
    width: 35px;
    height: 35px;
    box-shadow: 0px 3px 6px #00000029;
}
.galleryBox .arrowleft:hover, .galleryBox .arrowright:hover,
.galleryBox .arrowpause:hover, .galleryBox .arrowplay:hover,
.galleryBox .arrowleft:focus, .galleryBox .arrowright:focus,
.galleryBox .arrowpause:focus, .galleryBox .arrowplay:focus { color: #fff; background: #00583C; outline: none; border: 1px solid #00583C; }

.galleryBox span.arrowleft, .galleryBox span.arrowright { padding: 4px 5px; }
.galleryBox span.arrowpause { padding: 4px 6px 2px 6px; }
.galleryBox span.arrowplay { padding: 4px 0 2px 3px; }

.galleryBox .thumbnails .messages { padding: 0px 10px 15px 5px;}

/* fixed misalignment in Details on Business Directory page */
.field.inline > h4 { padding: 0 8px 0 0; }

/* New Calendar */
.calendar-container .calendar-body { background: var(--newcalBarBG);}

.calendar-container .calendar-body .calendar-weekdays li {
    background: #00583C;
    color: #fff;
}

.calendar-container .calendar-header .header-left .calendar-nav {
    color: #fff;
    background: #225896;
    border: none;
}

.calendar-container .calendar-body .calendar-dates li.active div.day {
    color: #fff;
    background: #225896;
}

.calendar-container .calendar-body .calendar-dates li div.day {
    background: var(--newcalEverydayColor);
    background: var(--newcalEverydayBG);
}

.calendar-container .calendar-body .calendar-dates li a.event {
    border-color: var(--newcalEventBorder);
    color: var(--newcalBodyColor);
    border-radius: var(--buttonradius);
    padding: 10px;
}

.calendar-container .procal-box .boxdate {
    color: #fff !important;
    background: #225896 !important;
    gap: 5px;
}

.calendar-container .calendar-header .header-left .calendar-current-date { font-size: 16px;}

.calendar-container .calendar-header .header-left button.today {
    background: var(--buttonbg);
    color: var(--buttoncolor);
    border: none;
    border-radius: var(--buttonradius);
    font: var(--buttonfont);
    text-transform: capitalize;
    transition: all 300ms ease;
    font-size: 16px;
}

.calendar-container .calendar-header .header-left button.today:hover {
    background: var(--buttonbghover);
    color: var(--buttoncolorhover);
}

.eventlistitem a {
    color: var(--newCalTextColor);
    font-weight: var(--newCalWeight);
    text-transform: capitalize;
}

.eventlistitem {
    /* border-bottom: var(--newcalListBorder); */
    border-bottom: none;
    align-items: center;
}

.eventlistitem .eventtime { color: var(--newcalTimeColor);}

.calendar-container .procal-belowheader  div.calendar-list h2 {
    border-bottom: var(--newcalListBorder);
    color: var(--newcalBodyColor);
}

.procalendar dialog.dialog:modal .category i:after {
    font-family: var(--designfont);
    font-weight: var(--newCalWeight);
}

.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: var(--newCalWeight);}
.calendar-container .calendar-list > h2 {
    font-family: var(--designfont);
    font-weight: var(--newCalWeight);
    color: var(--newCalTextColor);
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    border-bottom: var(--newcalListBorder);
    /* border-bottom: none; */
}

dialog.dialog:modal { border-radius: var(--buttonradius);}

dialog.dialog hr {
    border: none;
    border-bottom: var(--newcalListBorder);
}

dialog.dialog span.label {
    font-size: 16px;
    font-weight: var(--newCalWeight);
}

dialog.dialog .description, dialog.dialog .category {
    font-size: 16px;
    font-weight: 400;
}

dialog.dialog .category label { font-weight: var(--newCalWeight);}
dialog.dialog button.closedialog { color: var(--newCalTextColor);}
dialog.dialog button.closedialog:hover { color: var(--newCalCloseHover); }

.calendar-container .calendar-box .calendar-header .header-right .categories { border-color: var(--newcalEventBorder); }

/* 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;}

/* Inner Images Forced To Not Float*/
.inner .insideRightContent .promotion .image.left, .inner .insideLeftContent .promotion .image.left,
.inner .insideRightContent .sidebar .image.left, .inner .insideLeftContent .sidebar .image.left,
.inner .HA_Boxes .responsivebox .image.left  {
    float: none;
    margin: 0 auto 10px !important;
    max-width: 100% !important;
}
.inner .insideRightContent .promotion .image.left { float: left; }
.inner .infoblock.box { padding: 20px; }

/* Modern Calendar Size Override */
._moderncalendar .calDay.calEvent .calDayNum {
    /* Edit line height to center number based off font used */
    line-height: 1.7;
}

._moderncalendar .calDay .calDayNum {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    font-family: var(--designfont);
}

/* New calendar event corner cut off fix */
.calendar-container .calendar-body .calendar-dates li a.event,
.calendar-container .calendar-body .calendar-dates li a.event > div {
    border-radius: 0 !important;
    box-shadow: none;
}

.slider_owl div.item, .singlepic { height: 400px; }

/* custom css */
.council-meeting {
    color: #fff;
    background: #AA2218;
    padding: 10px 25px;
    text-align: center;
    display: inline-flex;
    border-radius: 24px;
    min-width: auto;
    min-height: 48px;
    font: normal normal bold 16px var(--designfont);
    letter-spacing: 0px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 6px #00000029;
}
.fa-solid.fa-podcast { margin-right: 0; }
.home .slider_wrap1::after, .home .singlepic::after {
    content: "";
    position: absolute;
    bottom: -115px;
    left: 0;
    width: 100%;
    height: 302px;
    background: url('./images/tree-bg.png') no-repeat center bottom;
    z-index: 0;
    background-repeat: no-repeat;
}
.innerimage::after, .inner .slider_wrap1::after, .inner .singlepic::after { 
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 207px;
    z-index: 0; 
    bottom: -40px; 
    background: url('./images/internal-trees.png'); 
    background-repeat: no-repeat; 
}
.filmstrip_owl div.item a div.filmstrip-img {
    position: relative;
    padding: 0 !important;
    width: 108px;
    height: 108px;
    margin: 0 auto;
}
.filmstrip_owl div.item a img {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}
.filmstrip_owl div.item a .filmstrip-shape {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0px 3px 6px #00000029;
}
.filmstrip_owl .owl-item:nth-child(3n + 1) .filmstrip-shape { background: #00583C;}
.filmstrip_owl .owl-item:nth-child(3n + 2) .filmstrip-shape { background: #225896;}
.filmstrip_owl .owl-item:nth-child(3n) .filmstrip-shape { background: #AA2218;}
.header-div a { color: #fff; text-decoration: none; }
.header-div a:hover span { text-decoration: underline; }
nav.horizontal.block > ul > li > ul {
    transform: translateX(-50%);
    left: 50% !important;
}
nav.menu > ul > li > ul.open { top: 67px !important; }
nav.horizontal.menu>ul ul ul {
    transform: translateX(5px);
    left: unset;
    background: rgb(0 88 60 / 96%);
    padding: 0;
}
nav.horizontal.menu>ul > li ul ul.bounced, nav.horizontal.menu>ul > li ul ul.bounced ul { transform: translateX(-5px); }
nav.menu > ul > li > ul.open::before {
    content: "";
    width: 100%;
    height: 35px;
    display: block;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
}
.home nav.horizontal.block>ul>li>a.nav-home > i { color: var(--navactivecolor); }
.box.promotion.B_PR > h2, .box.promotion.B_LIST.HA_Boxes_Top > h2 {
    font: normal normal bold 35px var(--secondaryfont);
    letter-spacing: 1.75px;
    color: #00583C;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}
.box.promotion.B_PR > h2 { text-align: left; }
.newsdatetime time, .eventsdatetime time { color: #225896; font: normal normal 600 16px var(--designfont); line-height: 1; }
.card-container .card-item .story:first-of-type, .promotion .story:first-of-type {
    border-top: none;
    padding-top: 0;
}
.card-container .card-item .story, .promotion .story {
    padding: 1.2rem 0;
    border-top: 1px solid #35353559;
    align-items: center;
}
.card-container .card-item .story i, .promotion .story i {
    font-size: 45px;
    color: #225896;
    padding: 15px 30px 10px 0;
}
.card-container .card-item .readmore.small {
    position: relative;
    bottom: 0;
    left: 0;
}
.home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox {
    width: 100%;
    height: 85px !important;
    margin: 0px 35px 35px 0px;
}
.home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 5px;
}
.home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox .image.left, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox .image.left {
    margin: 0 !important;
    width: unset !important;
    display: flex;
}
.home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox .image.left img, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox .image.left img { height: 24px !important; }
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody { display: none; }
.home .box.B_BOXES .responsivebox, .home .box.promotion.B_LIST.HA_Boxes .responsivebox, .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox {
    border-radius: 10px;
    transition: all 300ms ease;
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a, .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2, 
.inner section.box.promotion.B_LIST.HA_Boxes .responsivebox h2, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox h2 a {
    text-align: left;
    font: normal normal bold 18px var(--designfont);
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 0;
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a:hover, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox h2 a:hover { text-decoration: underline; }
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a:focus, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox h2 a:focus { outline: 1px dashed #fff; }
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:nth-of-type(3n+1), .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox:nth-of-type(3n+1) { background: #00583C;}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:nth-of-type(3n+2), .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox:nth-of-type(3n+2) { background: #225896;}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:nth-of-type(3n), .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox:nth-of-type(3n) { background: #AA2218;}
.fifty { flex-basis: 100%; max-width: 100%; }
.box.promotion.B_PR .summarybox h3 { padding: 0; }
.nogroup.Below {
    padding: 50px 40px 130px;
    background: url('./images/calendar-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.home .box.promotion.B_EV h2 {
    font: normal normal bold 35px var(--secondaryfont);
    letter-spacing: 1.75px;
    color: #FFFFFF;
    text-shadow: 0px 3px 6px #00000029;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}
.box.promotion.B_EV .box.B_EV .body._moderncalendar {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0;
}
.home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._calendarbox {
    flex-basis: 100%;
    max-width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}
.nogroup.Below .box.promotion.B_EV .body .box.B_EV ._eventsbox.HA_Cal_ModernPlusRight {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox {
    flex-basis: 100%;
    max-width: 100%;
    padding-top: 0;
}
._calendarbox.HA_Cal_ModernPlusRight div.seeallitems {
    position: absolute;
    margin-top: 0;
    margin-bottom: 0;
    width: fit-content;
    z-index: 9;
}
._calendarbox.HA_Cal_ModernPlusRight div.seeallitems {
    left: calc(50% + -105px);
    top: unset;
    margin-left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(-100%);
}
div.seeallitems a {
    color: var(--buttoncolor);
    text-decoration: none;
    background: var(--buttonbg);
    border-radius: var(--buttonradius);
    padding: 10px 20px;
    transition: background 300ms ease;
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    font: var(--buttonfont);
    min-width: 204px;
    min-height: 47px;
    text-transform: uppercase;
    box-shadow: 0px 3px 6px #00000029;
    border: var(--buttonborder);
    justify-content: center;
}
div.seeallitems a:hover { background: var(--buttonbghover); }
div.seeallitems a:focus { outline: 1px dashed #fff; }
._eventsbox.HA_Cal_ModernPlusRight .summaryDisplay::before {
    content: "\e0d7"; 
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    left: 20px;
    font-size: 45px;
    color: #225896;
}
.card-container .card-item { padding-bottom: 0; }
.calMonth { padding: 0; }
div.footerMain {
    width: 100%;
    padding: 0 40px;
}
footer div.footerdiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 20px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footerBottom {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
}
footer div.footerChild {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    width: 30%;
}
.d-flex {
    display: flex;
    flex-direction: column;
}
.footerChild.logos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center;
}
footer div.footerdiv {
    flex-direction: column;
    align-items: center;
    gap: 0;
}
footer div.footerChild {
    width: 100%;
    display: block;
}
.divider { display: none; }
.footerChild.contactUs { order: 3; }
.footerChild.logos { order: 2; }
.pt-30 { padding-top: 30px; }
.fa-regular.fa-location-dot, .fa-regular.fa-phone, .fa-regular.fa-fax, .fa-regular.fa-envelope { margin-right: 10px; }
.home ._eventsbox article.summaryDisplay { padding: 15px 20px 15px 80px; }
.council-meeting-mobile {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: bold;
}
.home .singlepic:before, .home .slider_wrap1 .owl-item:before, .inner .singlepic:before, .inner .slider_wrap1 .owl-item:before, .innerimage::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: transparent linear-gradient(180deg, rgb(1 39 27 / 72%) 0%, #00583C00 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}
img.innerlogo {
    width: 315px;
    height: auto;
    z-index: 1;
    top: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    display: none;
}
footer.main .text5 { order: 1; }
footer.main .copyright { order: 2; }
footer.main .verticalLogo_text { order: 3; }
.inner .insideMainContent > .sectionIntro > .body > h1 { text-transform: capitalize; letter-spacing: 0.75px; margin-bottom: 15px; }
.insideLeftContent h2 { text-transform: capitalize; margin-bottom: 40px; }
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox .boxbody { display: none; }
.inner .box.promotion.B_LIST.HA_Boxes > h2 { margin-bottom: 15px; }
.inner .box.promotion.B_LIST.HA_Boxes h2 a:focus { outline: 1px dashed #fff; }
.box.B_EV .summaryDisplay .body, .box.B_PR .summaryDisplay .body { display: none; }
.infoblock { margin-top: 10px; }
.container form { max-width: 100%; }
.insideRightContent h2 {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.box.B_BOXES.image_top .responsivebox { padding: 15px 0; }
.inner .seeallitems { margin-top: 20px; }
.calendar-container .procal-box .boxdate .month {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
}
.calendar-container .procal-box .boxdate .day {
    font-weight: 600;
    font-size: 20pt;
    line-height: 1;
}
.home-h1 h1 { font-size: 10px; }
.visible-lg { display: none; }
article.summaryDisplay h2 { display: inline; }
.box.promotion.B_PR .summarybox h3:hover + .newsdatetime time, .box.B_EV .summaryDisplay h3:hover + .eventsdatetime time, article.summaryDisplay h2:hover + .eventsdatetime time, article.summaryDisplay h2:hover + .newsdatetime time {
    text-decoration: underline;
    color: #225896;
}
nav.top.block ul > li:nth-child(3) {
    width: 300px;
    padding: 0;
}
nav.top.block .fa-solid.fa-podcast { margin: 12px 0 -4px; color: #EFB239; font-size: 16px !important; }
.council-meeting-mobile:hover span { text-decoration: underline; }
a:hover .fa-house { font-weight: 900; }
.inner ._eventsbox article.summaryDisplay {
    padding: 0 0 0 86px;
}

/* ------------- PHOTO GALLERY ------------- */
.container.content .galleryBox div.photoFrame img.bigImage,
.container.content .galleryBox div.photoFrame img.bigImage.fitHeight {
    /* height: auto !important;
    width: 100% !important; */
    max-width: 90% !important;
    max-height: 90% !important;
    height: auto !important;
    width: auto !important;
    margin: 10px;
    position: absolute;
    top: 0 !important;
    left: 48% !important;
    transform: translateX(-50%);
}

/* Mobile Photo Gallery Image Size */
.container.content .galleryBox div.photoFrame {
    height: 300px;
}

.box.DIR_PER.accordion .summaryDisplay { border: none; }

/* responsive */
@media (min-width: 100px) {
    .content { width: 100%; }
    .mainContent { width: 100%; }
    .mainContent, .leftContent, .rightContent { padding: 0; }
    .calendarTable .medium { display: none; }
    .allContainer { padding: 0; }
    .inner .content { min-height: 300px; padding: 20px 40px 50px; }
    .home .content { padding: 30px 15px; }
}

@media (min-width: 500px) {
    ._moderncalendar .calDay .calDayNum { width: 35px; height: 35px; }
    ._moderncalendar .calDay.calEvent .calDayNum { line-height: 2.1; }
}

/* 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) {
    .content {padding: 0 100px 50px; }
    .leftContent { padding: 20px 0 20px 20px; }
    .rightContent { padding: 20px 20px 20px 0; }
    .mainContent.hasLeft, .mainContent.hasRight { width: 75%; }
    .mainContent.hasLeft.hasRight { width: 50%; }

    .home .mainContent.hasLeft.hasRight { width: 34%; }
    .home .mainContent.hasLeft, .home .mainContent.hasRight { width: 67%; }
    .home .leftContent, .home .rightContent { width: 33%; }
    .home .insideMainContent { padding: 0; }

    .header-div {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    .filmstrip_owl div.item a div { padding: 10px 0 0; }
    .home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox { width: calc(50% - 28px); }
    .filmstrip_arrowwrap .controls { padding: 0 60px; }
    ._moderncalendar .calDay .calDayNum { width: 35px; height: 35px; }
    .home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox:nth-of-type(even), .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox:nth-of-type(even) { margin-right: 0; }
    .home .calMonth { padding: 0 70px; }
    .home section.box.promotion.B_LIST.HA_Boxes_Top .responsivebox, .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox { margin: 0px 50px 50px 0px; }
    ._eventsbox.HA_Cal_ModernPlusRight .summaryDisplay::before { left: 70px; }
    .home .slider_wrap1::after, .home .singlepic::after { bottom: -2px; }
    .innerimage::after, .inner .slider_wrap1::after { bottom: -10px; }
    img.innerlogo {
        width: 621px;
        height: 250px;
        top: 218px;
        display: block;
    }
    .box.B_BOXES.image_top .responsivebox { padding: 15px; }
    .socialFixed {
        left: auto;
        top: 380px;
        z-index: 8;
        right: 0;
        transform: translateY(50%);
    }
    .socialFixed .socialTools {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .socialFixed .socialTools a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-decoration: none;
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 10px 0 0 10px;
        font-size: 14pt;
        margin-bottom: 10px;
        opacity: 0.80;
        transition: all 300ms ease 0s;
    }
    .socialFixed .socialTools a.twitter { background: #333; }

    /* Breadcrumb And Resizer */
	.breadcrumbs > a:first-of-type:hover { text-decoration: none !important; }

    .inner .inner-header {
        /* Uncomment for 2 columns */
        /* position: absolute;
        top: 65px;
        right: 100px;
        left: 150px; */
        
        display: block;
        margin: 25px 40px 10px;
    }

    .inner .inner-header.hasLeft {
        /* Uncomment for 2 columns */
        /* position: absolute;
        left: calc(40% + 65px);
        top: 45px;
        right: 100px; */

        display: block;
    }

    .inner .inner-header .inner-header-container {
        display: flex;
        justify-content: space-between;
        border-bottom: var(--borderLine);
        padding-bottom: 25px;
    }

    .inner .breadcrumbs nav { margin-top: -1px; }

    .inner .breadcrumbs { 
        display: inline-flex;
        justify-content: left;
        align-items: center;
        flex-wrap: wrap;
    }

    .inner .breadcrumbs a, .inner .breadcrumbs h2 {
        font-size: 18px;
        font-family: var(--designfont);
        font-weight: 700;
        padding-right: 10px;
        transition: color 0.3s ease;
        text-decoration: none;
        text-transform: uppercase;
        min-width: 50px;
        line-height: 1;
    }

    .inner .breadcrumbs h2 { padding: 0 10px 0 0 !important; }

    .inner .breadcrumbs a::after {
        content: "\7c";
        font-family: "Font Awesome 6 Pro";
        padding-left: 10px;
        font-weight: 700;
        position: relative;
        bottom: 0px;
        color: #00583C;
        font-size: 16px;
    }

    .inner .breadcrumbs a:hover, .inner .breadcrumbs a:focus { color: #225896; outline: none; }
    .inner .breadcrumbs nav ul { list-style: none; padding-left: 0; }
    .inner .breadcrumbs nav ul li { margin: 0; float: left; line-height: 1; }

    /* Last item in the breadcrumb */
    .inner .breadcrumbs nav ul > li:last-of-type > a, .inner .breadcrumbs h2 { color: #225896; }
    .inner .breadcrumbs nav ul > li:last-of-type > a::after { content: none; }
    .inner .breadcrumbs nav ul li > span { display: none; }
    .inner .inner-header .printResize { display: block; min-width: 80px; }

    .printResize .resize {
        text-decoration: none;
        font-family: var(--designfont);
        color: #333;
        transition: color 300ms ease;
        cursor: pointer;
        font-weight: 700;
        padding: .05rem;
    }
    
    .printResize .resize.small { font-size: 12pt !important; }
    .printResize .resize.med { font-size: 14pt !important; }
    .printResize .resize.large { font-size: 17pt !important; }

    .printResize .printBtn {
        height: 100%;
        border: none;
        background: transparent;
        cursor: pointer;
        position: relative;
        top: -1px;
        border-radius: 2px;
        transition: color 300ms ease;
        color: #333;
        font-size: 18px;
        margin-left: .25rem;
    }
    
    .printResize .printBtn:hover, .printResize .resize:hover { color: #000; }
    .printResize .printBtn img { height: 100%; transition: filter 300ms ease; }

    .inner .leftContent { background: #D7E2E1; position: relative; padding: 20px; border-radius: 0 2px 2px 0;}
    .inner .mainContent { min-height: 300px;}
    .inner .mainContent { padding: 0; }
    .inner .mainContent.hasLeft { padding: 0 0 0 35px; }
    .inner .mainContent.hasLeft.hasRight { padding: 0 35px 0 50px; }

    /* Home Slider Height */
    .slider_owl div.item, .singlepic { height: 860px; }
    
    /* Inner Slider and Image Height */
    .innerimage, .inner .singlepic, .inner .slider_owl div.item { height: 546px; }

    .inner .mainContent { min-height: 300px; }

    div.banner { 
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: column; 
        background: transparent linear-gradient(180deg, rgb(1 39 27 / 72%) 0%, #00583C00 100%) 0% 0% no-repeat padding-box;
        height: 250px;
    }

    .topbar2 div.titlewrap {
        padding: 0px;
        max-width: 100%;
        display: block;
        text-align: center;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        left: 100px;
        z-index: 10;
        display: none;
    }

    .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);
    }

    .topbar2 a.title img { max-width: 100%; }

    .searchSocial {
        padding: 20px 40px 25px 40px;
        position: relative;
        bottom: auto;
        top: auto;
        right: auto;
        left: auto;
        word-spacing: normal;
        line-height: normal;
        letter-spacing: 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 .search.bar .fieldAndButton {
        padding: 5px;
        width: 265px;
        display: inline-flex;
        min-height: 48px;
        line-height: normal;
        box-shadow: 0px 3px 6px #00000029;
        border: 1px solid #FFFFFF40;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
    }

    .searchSocial .search.bar .searchField {
        padding: 5px;
        width: 85%;
        font: normal normal 600 16px var(--designfont);
        color: #353535;
    }

    .searchSocial .search.bar .searchMag { margin: 1px; font-size: 16px; color: #00583C; font-weight: 900 !important; }

    .searchSocial .openweather, .searchSocial .airquality {
        text-transform: capitalize;
        float: left;
        display: inline-block;
        margin-right: 15px;
        margin-top: 15px;
        vertical-align: top;
    }

    .searchSocial .openweather i, .searchSocial .airquality i { color: #fff; font-weight: 400 !important; }
    .searchSocial .airquality { margin-left: 20px; }

    .searchSocial .openweather a, .searchSocial .airquality {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        font-family: var(--designfont);
        text-decoration: none;
    }
    .searchSocial .openweather a:focus { outline: 1px dashed #fff; }
    .searchSocial .openweather a:hover { 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; position: relative; z-index: 9; }

    .container.content .galleryBox div.photoFrame img.bigImage.fitHeight {
        height: 100% !important;
        width: auto !important;
    }

    .filmstripbar_owl { padding: 5px 135px;}

    .filmstrip_arrowwrap { display: block; }

    .desktoponly { display: block; }

    .inner .leftContent { width: 40%; }

    .inner .rightContent {
        padding: 0 0 20px 0;
        width: 100%;
    }

    /* .leftContent .box, */
    .rightContent .box { padding-top: 0; }

    .inner .mainContent.hasLeft.hasRight, .inner .mainContent.hasLeft { width: 60%; }

    .B_MEET .meetings.search .button { margin-top: 0; margin-left: 5px; }

    /* Modern Calendar Size Override */
    .inner .mainContent ._calendarbox.ModernPlusRight,
    .inner .mainContent ._eventsbox.ModernPlusRight,
    .inner .mainContent ._calendarbox.HA_Cal_ModernPlusRight,
    .inner .mainContent ._eventsbox.HA_Cal_ModernPlusRight {
        display: block;
        width: 100%;
    }
    .slider_arrowwrap .controls { top: 250px; } 
    .home .singlepic .description, .home .slider_owl .description { bottom: 30%; }
    .inner .singlepic .description, .inner .slider_owl .description { bottom: 10%; }
    .home .singlepic .description::before, .home .slider_owl .description::before {
        content: "";
        display: inline-block;
        background-image: url('./images/Logo.png');
        background-size: 100%;
        background-repeat: no-repeat;
        width: 700px;
        height: 268px;
        z-index: 2;
        position: relative;
    }
    .inner .singlepic .description::before, .inner .slider_owl .description::before {
        content: "";
        display: inline-block;
        background-image: url('./images/internal-logo.png');
        background-size: 100%;
        background-repeat: no-repeat;
        width: 621px;
        height: 250px;
        z-index: 1;
        position: relative;
    }
    .filmstrip_wrap1 { margin-top: -175px; }
    .home .content { padding: 30px 15px; }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar { padding: 0; }
    .home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._calendarbox { padding: 35px 0 20px; }
    .home ._eventsbox article.summaryDisplay { padding: 15px 0 15px 140px; }
    .docmanContainer .docmanSearch { width: 260px; }

    /* Photo Gallery Fix */
    .container.content .galleryBox div.photoFrame img.bigImage,
    .container.content .galleryBox div.photoFrame img.bigImage.fitHeight {
        max-width: 95% !important;
        max-height: 95% !important;
    }

    /* Desktop Photo Gallery Image Size */
    .container.content .galleryBox div.photoFrame {
        height: 500px;
    }
}

@media (min-width: 1000px) {
    .home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox { margin: -4px 0 -4px 0; }
}

@media (min-width: 1100px) {
    .box.promotion.B_EV .box.B_EV .body._moderncalendar { flex-direction: row; }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar ._calendarbox {
        flex-basis: 50%;
        max-width: 50%;
    }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox {
        flex-basis: 50%;
        max-width: 50%;
    }
    ._calendarbox.HA_Cal_ModernPlusRight div.seeallitems { left: calc(50% + -100px); }
    .searchSocial .search.bar .fieldAndButton { width: 336px; }
}

@media (min-width:1200px) {
    .inner .rightContent, .inner .leftContent { width: 25%; }
    .inner .mainContent.hasLeft { width: 75%; }
    .inner .mainContent.hasLeft.hasRight { width: 50%; }

    /* Breadcrumb - uncomment for 2 columns */
    /* .inner .mainContent.hasLeft.hasRight { width: 50%; }
    .inner .inner-header.hasLeft { left: calc(25% + 90px); } */

    /* Modern Calendar Size Override */
    .inner .mainContent ._calendarbox.ModernPlusRight,
    .inner .mainContent ._eventsbox.ModernPlusRight,
    .inner .mainContent ._calendarbox.HA_Cal_ModernPlusRight,
    .inner .mainContent ._eventsbox.HA_Cal_ModernPlusRight {
        display: inline-block;
        width: 48%;
        padding: 15px;
    }
    .home .singlepic .description::before, .home .slider_owl .description::before {
        width: 930px;
        height: 355px;
    }
    nav.horizontal.menu>ul ul { width: 250px !important; }
    nav.menu > ul > li > ul.open { top: 67px !important; }
    .fifty { flex-basis: 50%; max-width: 50%; }
    footer .footerBottom { flex-direction: row; }
    footer div.footerdiv { flex-direction: row; }
    footer div.footerChild { width: 38%; }
    footer.main .text, footer.main .text2, footer.main .text3, footer.main .text4, footer.main .text5, footer.main .text6, footer.main .text7, footer.main .text8, footer.main h4 { text-align: left; }
    .footerChild.logos {
        flex-direction: row;
        justify-content: flex-end;
    }
    .footerChild.contactUs { order: 2; }
    .footerChild.logos { order: 3; }
    .pt-30 { padding-top: 0; }
    footer.main .text5 { order: 2; }
    footer.main .copyright { order: 1; }
    footer.main .verticalLogo_text { order: 3; }
    .inner section.box.promotion.B_LIST.HA_Boxes .responsivebox { width: calc(50% - 28px); }
    .visible-lg { display: block; }
    .fa-solid.fa-podcast { margin-right: 10px; }
}

@media (min-width:1400px) {
    /* nav.horizontal.block>ul>li>a { padding: 5px 20px; } */
    .slider_owl div.item, .singlepic { height: 915px; }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar {
        flex-direction: row;
        gap: 1;
        padding: 0 0;
    }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar ._calendarbox {
        flex-basis: 50%;
        max-width: 50%;
    }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox {
        flex-basis: 50%;
        max-width: 50%;
        margin: -9px 0 -10px 0;
    }
    .docmanContainer .docmanSearch { width: unset; }
}

@media (min-width: 1600px) {
    .searchSocial { padding: 20px 150px 25px 150px; }
    nav.horizontal.block { padding: 10px 85px 10px 85px; margin: 0 150px; }
    .slider_owl div.item, .singlepic { height: 915px; }
    .slider_arrowwrap .controls { right: 150px; } 
    nav.horizontal.menu>ul ul { width: 300px !important; }
    .home .content { padding: 30px 125px; }
    .inner .content { padding: 0 150px 50px; }
    .nogroup.Below { padding: 40px 150px 140px; }
    ._moderncalendar td.calDay { padding: 13px 10px; }
    div.footerMain { padding: 0 150px; }
    footer .footerBottom { padding: 20px 150px 40px; }
    .d-flex { flex-direction: row; gap: 7px; }
    .divider { display: block; }
    .inner .inner-header { margin: 25px 150px 30px; }
}
@media (min-width: 1700px) {
    .filmstrip_arrowwrap .controls { display: none; }
    footer div.footerChild { width: 35%; }
}
@media (min-width: 1930px) {
    .home .slider_wrap1::after, .home .singlepic::after {
        bottom: -30px;
        height: 480px;
        background-size: 100%;
    }
    .innerimage::after, .inner .slider_wrap1::after { bottom: -68px; height: 275px; background-size: 100%; }
}
@media (min-width: 2500px) {
    .home .slider_wrap1::after, .home .singlepic::after { bottom: -120px; height: 550px; }
    .innerimage::after, .inner .slider_wrap1::after { bottom: -203px; height: 460px; }
}
@media (min-width: 3000px) {
    .innerimage::after, .inner .slider_wrap1::after { bottom: -140px; }
}