@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: .5em 0; }
body {
    font-family: "Poppins", serif;
    font-family: var(--designfont);
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: #fff;

    line-height: 1.5;
    /* letter-spacing: 0.12ex;
    word-spacing: 0.16ex; */
}

body.home, body.inner {
    height: 100%;
    background: #fff;
}

.allContainer {
    padding: 0;
    margin: 0;
    zoom: 1;
}

/* SET VARIABLES FIRST */
:root {
    --designfont: 'Poppins', serif;
    --majortitlecolor: #2e2e2e;

    --navbg: #555;
    --navcolor: #2e2e2e;
    --navactivebg: #505962;
    --navactivecolor: #fff;
    --slabbg: rgba(241,238,233,0.95);
    --slabcolor: #fff;
    --slabactivebg: #662600;
    --slabactivecolor: #fff;

    /* Notifications */
    --notificationLowBG: #cccaa3;
    --notificationLowColor: #2e2e2e ;
    --notificationLowMoreBG: rgba(251, 251, 251, 0.35);
    --notificationLowMoreColor: #2e2e2e;

    --notificationMediumBG: #c0c7cc;
    --notificationMediumColor: #2e2e2e;
    --notificationMediumMoreBG: rgba(251, 251, 251, 0.35);
    --notificationMediumMoreColor: #2e2e2e;

    --notificationHighBG: #d9c0a0;
    --notificationHighColor: #2e2e2e;
    --notificationHighMoreBG: rgba(251, 251, 251, 0.35);
    --notificationHighMoreColor: #2e2e2e;

    /* Mobile nav */
    --mobiletopbarbg: #fff;
    --mobiletopbarcolor: #2e2e2e;

    --mobileDropBG: #f1eee9;
    --mobileLinkColor: #2e2e2e;
    --mobileSubLinkColor: #2e2e2e;
    --mobileSubSubLinkColor: #2e2e2e;
    --mobileBorder: solid 1px rgb(46, 46, 46, .25);
    --mobileDropShadow: block; /* None or block */
    --mobileIconWeight: 400; /* Light 100 - Regular: 400 - Solid: 900 */
    --mobileIconColor: #2e2e2e;

    /* Accordion */
    --accordioncolor: #fff;
    --accordionbg: #595847;
    --accordionplus: #fff; 
    --accordioncolorhover: #fff;
    --accordionbghover: #505962;
    --accordionplushover: #fff;
    --accordionborder: solid 1px #333;
    --accordionradius: 3px;

    /* Calendar Bar, Date Circle, Meeting Date, Documents title/icons */
    --main: #60433d;
    --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: #595847;
    --buttonbg: #fff;
    --buttoncolorhover: #fff;
    --buttonbghover: #595847;
    --buttonborder: solid 2px #595847;
    --buttonradius: 25px;
    --buttontexttransform: uppercase;
    --buttonfont: 700 16px 'Poppins', serif;
    --buttonpadding: 10px 30px;

    /* Plugin Headings */
    --promotionHeading: 700 18px 'Poppins', serif;
}

a#skipLink { top: -43px; }

#backTop {
    font-size: 18px;
    transition: all 300ms ease;
    background: #505962;
    border: 1px solid #505962;
    color: #fff;
}

#backTop:hover {
    background: #595847;
    border: 1px solid #595847;
    color: #fff;
}

.desktoponly { display: none; }
.extraTopBorder {
    display: none;
    height: 10px;
    font-size: 0;
}

/* new 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; }
.alertcontainer .controls button { color: var(--notificationLowColor); }

.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-family: 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, .alertcontainer button.closealerts, .alerts .alert button.dialogbutton {
    letter-spacing: 0px;
    color: #2e2e2e;
    font: normal normal 600 16px var(--designfont);
}
.alerts .alert button.dialogbutton {
    display: inline-flex;
    min-width: 180px;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 35px;
    border-radius: 3px;
}
.alertcontainer { z-index: 2000; }

.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: #2e2e2e;
    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;
} */

.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(--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 40px;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
}

nav.top.block ul > li { padding: 0;}

nav.top.block ul > li:first-of-type {
    width: 100%;
    padding: 0;
    display: none;
}

nav.top.block ul > li:last-of-type { padding-right: 0;}

nav.top.block li a {
    padding: 5px 0;
    font-size: 16pt;
    color: var(--mobiletopbarcolor);
    text-align: center;
}

nav.top.block li .titlewrap a { text-align: left;}
nav.top.block li  a > div { 
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px; 
}
nav.top.block li:last-child { border-right: none; }
nav.top.block li a:hover, nav.top.block li a:hover i { color: #505962; }
nav.top.block li a > * {
    display: inline-block;
    vertical-align: middle;
}

nav.top.block li a i { color: var(--mobileIconColor);}
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;
}

.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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 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: capitalize;
    letter-spacing: 0px;
}

/* 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;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.navDrop nav.block.mobilemenu a:focus,
.navDrop nav.block.mobilemenu span:focus { outline: 1px dashed #333; }
.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: 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;
    color: #505962;
    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 10px;
}

.navDrop nav.block.mobilemenu li.openweather a,
.navDrop nav.block.mobilemenu li.airquality  { text-transform: capitalize; color: var(--mobileLinkColor); font-size: 18px; display: inline-block; padding: 0; font-weight: 600; letter-spacing: 0; }
.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; 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: #666;
    padding: 4px;
    width: 80%;
    width: calc(100% - 50px);
}
.searchDrop .mobilesearch .fieldAndButton .searchMag {
    font-size: 20pt;
    float: right;
    height: 35px;
    width: 35px;
    line-height: 40px;
    vertical-align: middle;
    color: var(--mobiletopbarcolor);
}

/* 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; }
.inner .container.content div img { height: auto !important; max-width: 100% !important; border-radius: 3px; }
.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 {
    font-weight: bold;    
    color: #60433d;
    text-decoration: none;
    transition: all 300ms ease;
}

a:hover { text-decoration: underline; }
a:focus { outline: 1px dashed #555; }
input:focus { background: #eee; color: #000; }

/*===( HEADLINES )===*/
h1, h2, h3, h4, h5 { margin: 0; text-align: left; }
h1, h2, h3.subtitle {
    font-family: var(--designfont);
    font-size: 24pt;
    font-weight: normal;
    line-height: 115%;
    color: var(--majortitlecolor);
    text-align: center;
    padding: 8px 0;
    margin: 0;
}
h2 { font-size: 20pt; }
h3, h3.subtitle { font-size: 14pt; }
h4 { font-size: 13pt; }
h5 { font-size: 12pt; }
h6 { font-size: 11pt; }

.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; */
}

/* 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 {
    font: var(--promotionHeading) !important;
    text-decoration: none;
    color: #2e2e2e;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.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 { text-decoration: underline; color: #505962; }
article, section, article main.body, section main.body {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
.item.summaryDisplay, article.summaryDisplay {
    margin: 0;
    padding: 25px 0 5px;
}
.inner .insideMainContent .box.B_PR .summaryDisplay {
    display: flex;
    align-items: center;
}

.inner .eventlistitem .rightside h3 {
    padding: 0;
}

.summaryDisplay h3 a, .headlineDisplay h3 a,
.item.summaryDisplay h2 a, article.summaryDisplay h2 a {
    margin: 0;
    padding: 5px 0;
}

div.readmore.small {
    font-weight: bold;
    /* text-align: right; */
    bottom: 0;
    margin-top: 25px;
}
.home div.readmore.small a, .inner div.readmore.small a {
    display: inline-flex;
    padding: 10px 30px;
    background: none;
    color: #595847;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 300ms ease;
    letter-spacing: 1px;
    min-width: 220px;
    min-height: 50px;
    border: 2px solid #595847;
    font: normal normal bold 16px var(--designfont);
    justify-content: center;
    align-items: center;
}
div.readmore.small a:hover, div.readmore.small a:focus {
    text-decoration: none;
    background: #595847;
    color: #fff;
}

footer.main {
    position: relative;
    padding: 0;
    background: #fff;
    color: #2e2e2e;
    text-align: center;
    display: block;
    min-height: 200px;
}

footer .footerlogo {
    /* position: absolute;
    top: -20px; left: calc(50% - 100px);  */
}

footer.main h4 {
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #2e2e2e;
    font: normal normal bold 22px var(--designfont);
    text-align: center;
    margin-top: 15px;
    text-transform: none;
}

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: #2e2e2e;
    text-align: center;
    padding: 2px 0;
    display: block;
    white-space: pre-wrap;
}

footer.main .text {
    color: #2e2e2e;
    font-size: 16px;
}

.social-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 10px 0;
    justify-content: center;
}

footer.main .footer-social-img {
    width: 24px;
    height: 24px;
    margin-right: 2px;
}

footer.main .verticalLogo_text, footer.main .verticalLogo_text a, footer.main .copyright {
    text-align: center;
    margin: 0;
    padding: 2px 0;
    letter-spacing: 0px;
    color: #ffffff;
    font: normal normal 600 16px var(--designfont);
    text-decoration: none;
}
footer .footertext {
    /* display: inline-block; */
}

footer.main a {
    text-decoration: none;
    color: #2e2e2e;
    font-weight: normal;
}

footer.main a:hover {
    text-decoration: underline;
}
footer.main .verticalLogo_text a:focus { outline: 1px dashed #fff; }
 
.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 {
    /* padding-left: 10px; */
    text-decoration: underline;
}
.footersecondary > nav.block > ul,
.footersecondary > nav.block > ul ul { padding-left: 0; }

.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: 0 45px 0 45px;
    text-align: center;
    background: #fff;
    z-index: 2;
}

nav.horizontal.block>ul {
    padding: 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: 3px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font: normal normal 700 20px var(--designfont);
    position: relative;
}

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: var(--navactivebg);
    color: var(--navactivecolor);
    text-decoration: none;
}

nav.horizontal.block li li>a {}
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; */
}

nav.horizontal.block>ul>li.open>a {
    position: relative;
    z-index: 1002;
}

nav.horizontal.menu>ul ul { background: #fff;}

nav.block.menu>ul .triangle {
    margin-top: 4px;
    color: inherit;
    opacity: 1.0;
}
nav.block.menu>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: 25px; margin-bottom: -10px; margin-top: 15px; }
nav.subsections ul ul a { font: normal normal 600 16px var(--designfont); }
nav.subsections a {
    text-decoration: none;
    line-height: 1.2;
    padding: 0;
    letter-spacing: 0px;
    color: #2e2e2e;
    font: normal normal 700 18px var(--designfont);
}
nav.subsections li.actual > a { font-weight: bold; text-decoration: underline; }
nav.subsections a:hover { color: #505962; text-decoration: underline;}

/* Slab */

/* Column Borders */
nav.slab.horizontal.block > ul > li ul > li.col { border-right: 1px solid rgba(46, 46, 46,.25);}

/* 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: 0px 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 100%;
    position: absolute; top: 100%; left: 0; right: 0;
    white-space: normal;
    padding: 65px 7% 50px 7.9%;
    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;
}
nav.horizontal.block > ul > li.open > ul::before {
    position: absolute;
    content: " ";
    display: block;
    width: 100%;
    top: 0px;
    right: 0px;
    left: 0px;
    height: 7px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}
/* 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%;
    height: 100%;
    vertical-align: top;
    padding: 0 50px;
}
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: 0;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* 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 {
    padding: 5px 0;
    letter-spacing: 0px;
    color: #2e2e2e;
    font: normal normal 600 16px var(--designfont);
    line-height: 1;
}

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 {
    color: #2e2e2e;
    padding: 0;
    text-decoration: none;
    letter-spacing: 0px;
    font: normal normal 700 18px var(--designfont);
}

/* 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 {
    background: none;
    color: #505962 !important;
    text-decoration: underline;
}

/* Breadcrumb and Resizer */
.breadcrumbs > a:first-of-type:hover { text-decoration: none !important; }

.innerToolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 20px;
}

.inner .breadcrumbs {
    display: flex;
    /* padding-bottom: 22px;
    margin-top: -4px; */
    justify-content: space-between;
    align-items: end;
}

.inner .breadcrumbs a {
    padding-right: 5px;
    padding-top: 5px;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    color: #2e2e2e;
    font: normal normal 700 16px var(--designfont);
}

.inner .breadcrumbs a::after {
    /* background: url('images/breadcrumbs-arrow.png'); */
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 3px;
    vertical-align: middle;
    position: relative;
    width: 20px;
    height: 20px;
    content: "";
}

.inner .breadcrumbs .printResize a::after { display: none; }
.inner .breadcrumbs a:hover { color: var(--red);}
.inner .breadcrumbs nav ul {
    list-style: none;
    padding-left: 0;
}

.inner .breadcrumbs nav ul li {
    margin: 0;
    float: left;
}

.inner .breadcrumbs nav ul > li:last-of-type > a { color: var(--red);}
.inner .breadcrumbs nav ul > li:last-of-type > a::after { content: none;}
.inner .breadcrumbs nav ul li > span { display: none;}
.inner .breadcrumbs .printResize a { padding-right: 5px; }

.printResize { float: right; }
.printResize .resize {
    text-decoration: none;
    font-family: var(--sans);
    color: #2e2e2e;
    transition: color 300ms ease;
    cursor: pointer;
}

.printResize .resize.small { font-size: 12pt !important;}
.printResize .resize.med { font-size: 14pt !important;}
.printResize .resize.large { font-size: 17pt !important;}
.printResize .resize:hover { color: #505962;}
.printResize .printBtn {
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    top: 0px;
    border-radius: 2px;
    transition: color 300ms ease;
    color: var(--blue);
    font-size: 18px;
}

.printResize .printBtn:hover { color: #505962;}
.printResize .printBtn img {
    height: 100%;
    transition: filter 300ms ease;
}
.printResize .printBtn:hover img { filter: brightness(10);}

/* Braedcrumb End */

.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;
    min-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;
    color: #505962;
}

.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: 200px !important; display: flex; margin-bottom: 0;}

/* 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: #2e2e2e;
    font-size: 16px;
    letter-spacing: 1px;
}

.calMonthHeading {
    background: #fff;
    color: #333;
    border: none;
    font-size: 90%;
    border: 1px solid #333;
    border-bottom: none;
}
.calMonthHeading { padding: 3px 4px 10px;}

._moderncalendar .calDayHeading th {
    background: #60433d;
    color: var(--maincolor);
    padding: 8px 0;
    font-weight: 600;
}

.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; font: var(--promotionHeading); color: #2e2e2e; text-decoration: none; }
table.calendarTable .calDay a.eventLink:hover { text-decoration: underline; color: rgb(80 89 98); }

.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 .calDay.calEvent .calDayNum {
    background: #595847;
    color: #fff;
}

._moderncalendar .dayeventscontainer { z-index: 1;}

.calToday .calDayNum {
    background: #333;
    color: #fff;
}

.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: #595847;
    color: var(--maincolor);
    text-transform: uppercase;
    margin: 0;
}
.home .circleDate { display: none; }
/* keep the date/time from line-breaking below .circleDate */
.home ._eventsbox article.summaryDisplay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    margin: 5px 0;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
}

.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;
    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;}
.innerimage.random3 { background: url("images/internal-banner-03.jpg") no-repeat center;}
.innerimage.random4 { background: url("images/internal-banner-04.jpg") no-repeat center;}
.innerimage.random5 { background: url("images/internal-banner-05.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;
}

.slider_owl div.item, .singlepic { height: 600px; }
.inner .slider_owl div.item, .inner .singlepic { height: 300px; }

.singlepic .description, .slider_owl .description {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: #eee;
    text-align: center;
    font-size: 14pt;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 117%;
    z-index: 1;
}

.slider_owl .description a, .singlepic .description a {
    text-decoration: none;
    background: none;
    padding: 10px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 300ms ease;
    font: normal normal 700 16px var(--designfont);
    letter-spacing: 1px;
    text-shadow: none;
    display: inline-flex;
    margin-top: 10px;
    min-width: 210px;
    text-align: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #ffffff;
}

.slider_owl .description a:hover, .singlepic .description a:hover { color: #fff; background: #595847; border: 2px solid #595847; }

.slider_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .slider_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    bottom: 195px;
    right: 0;
    z-index: 1;
    align-items: center;
    width: 100%;
    justify-content: center;
    column-gap: 6px;
}
.slider_arrowwrap .controls {
    display: inline-flex;
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 1;
    column-gap: 6px;
}
.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: 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;
    background: rgb(0 0 0 / 25%);
    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: #fff; background: #505962; outline: none; border: 2px solid #505962; }
.slider_arrowwrap span.arrowplay { display: none; }

.filmstrip_wrap1 {
    position: absolute;
    width: 100%;
    font-size: 0;
    line-height: normal;
    bottom: 0;
    z-index: 1;
}
.filmstripbar_owl {
    padding: 0 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 #fff; }
.filmstrip_owl div.item a:hover { text-decoration: underline; }
.filmstrip_owl div.item a img {
    height: 45px;
    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: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #fff;
    margin-top: 5px;
    letter-spacing: 1px;
}

.filmstrip_arrowwrap {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.filmstrip_arrowwrap .controls {
    display: inline-flex;
    justify-content: space-between;
    position: absolute;
    bottom: 65px;
    right: 0px;
    left: 0;
    z-index: 0;
    padding: 0 20px;
}
.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: 0;
    border: 2px solid #fff;
    background: rgb(0 0 0 / 25%);
    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: #505962; outline: none; border: 2px solid #505962; }
.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;
}

.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-bottom: 20px;
    transition: all 300ms ease;
    letter-spacing: 1px;
}

.accordion button.accordionall:hover {
    color: var(--buttoncolorhover);
    background: var(--buttonbghover);
}
.accordion article.summaryDisplay h2 button { padding: 4px 0 0 10px;}

.accordion article.summaryDisplay h2 {
    padding: 11px 15px;
    transition: background 300ms ease;
    color: var(--accordioncolor);
    background: var(--accordionbg);
    border: none;
    border-radius: var(--accordionradius);
    transition: all 300ms ease;
}

.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);}

.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: var(--main);
    color: var(--maincolor);
    border: none;
}

.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 .meetings.search .fieldAndButton .searchField { padding: 12px;}

.DIR_PER article.summaryDisplay h2 a {
    font-family: var(--designfont);
    font-weight: bold;
    color: #2e2e2e;
    margin-bottom: 10px;
    display: block;
    font-size: 25px !important;
}
.DIR_PER article.summaryDisplay h2 a:hover { text-decoration: underline; }

.galleryBox span.arrowleft, .galleryBox span.arrowright, .galleryBox span.arrowpause, .galleryBox span.arrowplay { font-size: 15px;}

.namesearchbox > div { background: #fff;}

div.sffield input, div.sffield select, div.sffield.radios, div.sffield.checkboxes, div.sffield textarea { border-radius: 3px; background: #eeeeee; }

/* Documents content type */
.mainContent .docmanContainer { padding: 30px 0;}

.docmanContainer .docmanSearch { background: #fff;}
.docmanContainer .breadcrumb, .docmanContainer h3.searchTitle,
.docmanContainer .subfolders > div > div > i { color: var(--main);}

.docmanContainer #docmanSearchButton {
    position: relative;
    top: -1px;
    border-radius: 5px;
    padding: 7px 30px;
    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);
    letter-spacing: 1px;
}

.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;
    letter-spacing: 1px;
    padding: 8px 30px !important;
}

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: #2e2e2e;
    border: 2px solid #2e2e2e;
    background: #fff;
    transition: all 300ms ease;
    margin: 0 3px;
    width: 35px;
    height: 35px;
}
.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: #505962; outline: none; border: 1px solid #505962; }
.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: #60433d;
    color: #fff;
}

.calendar-container .calendar-header .header-left .calendar-nav {
    background: #595847;
    color: #fff;
    border: none;
}

.calendar-container .calendar-body .calendar-dates li.active div.day {
    color: #fff;
    background: #595847;
}

.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;
    background: #595847;
}

.calendar-container .calendar-header .header-left .calendar-current-date { font-size: 16px;}
.calendar-container .calendar-header .header-left button.today {
    background: none;
    color: var(--buttoncolor);
    border: var(--buttonborder);
    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: #2E2E2E;
    font-weight: var(--newCalWeight);
    text-transform: capitalize;
}
.eventlistitem a:hover { color: #505962; text-decoration: underline; }
.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; background-color: #fff; box-shadow: none;}
.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; }

/* CUSTOM CSS */
.slider_owl div.owl-item::before, .singlepic::before {
    z-index: 1;
    content: "";
    background: rgb(0 0 0 / 35%);
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 100%;
    width: 100%;
}
.inner .slider_owl div.owl-item::before, .inner .singlepic::before, .inner .innerimage::before {
    z-index: 1;
    content: "";
    background: rgb(0 0 0 / 15%);
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 100%;
    width: 100%;
}
.fa-regular.fa-phone, .fa-regular.fa-clock { color: #fff; margin-right: 5px; }
.top-nav-info {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 600;
}
nav.horizontal.block>ul>li>a:hover::after, nav.horizontal.block>ul>li>a:focus::after, nav.horizontal.block>ul>li.open>a::after {
    content: url('./images/triangle-category-hover.svg');
    position: absolute;
    bottom: -23px;
    z-index: 5;
    transform: translateX(-50%);
    left: 50%;
    transition: all 300msease;
}
.home .description h1 span {
    text-transform: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-shadow: 0px 0px 8px #00000080;
    font: normal normal bold 30px var(--designfont);
    line-height: 40px;
    letter-spacing: 2px;
    margin-top: 15px;
}
.home .description h1 {
    text-transform: none;
    color: #fff;
    line-height: 1;
    text-shadow: 0px 0px 8px #00000080;
    font: normal normal 600 18px var(--designfont);
    padding-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}
.filmstrip_owl .owl-stage-outer .owl-item .item {
    width: 100%;
    padding: 0 18px 0;
}
.filmstrip_owl .owl-stage-outer .owl-item .item a {
    height: 125px;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.filmstrip_owl div.item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    font-weight: 500;
    font-size: 12pt;
    line-height: 20px;
    letter-spacing: 0.4px;
    color: #fff;
    background: rgb(51 51 51 / 90%);
    text-decoration: none;
    transition: background 300ms ease 0s;;
    min-height: 160px;
}
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n + 1) .item a { background: rgb(96 67 61 / 85%); }
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n + 2) .item a { background: rgb(80 89 98 / 85%); }
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n) .item a { background: rgb(89 88 71 / 85%); }
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n + 1) .item a:hover { background: rgb(96 67 61 / 100%); }
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n + 2) .item a:hover { background: rgb(80 89 98 / 100%); }
.filmstrip_owl .owl-stage-outer .owl-item:nth-child(3n) .item a:hover { background: rgb(89 88 71 / 100%); }
.home section.box.promotion.B_LIST {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 30px;
    row-gap: 35px;
}
.home .box.promotion.HA_Boxes_Top .responsivebox {
    width: 100% !important;
    overflow: hidden;
}
/* .home .box.B_BOXES .responsivebox, .home .box.B_BOXES .responsivebox, .home .box.promotion.HA_Boxes .responsivebox, .home .box.promotion.HA_Boxes_Top .responsivebox {
    margin: 0 !important;
    min-height: 280px;
} */
.home .box.promotion.B_LIST .responsivebox {
    background: #fff;
    border-radius: 3px;
    padding: 0;
    margin: 0;
    transition: box-shadow 300ms ease 0s;
    box-shadow: 0 0 6px rgba(0, 0, 0, .25);
}
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox { 
    margin: 10px; 
    border-radius: 3px; 
    background: #fff;
    padding: 0;
    transition: box-shadow 300ms ease 0s;
    box-shadow: 0 0 6px rgba(0, 0, 0, .25);
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
    --box-img-width: 120px;    
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: 0;
}
.home .box.promotion.B_LIST .responsivebox div.image, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
    position: absolute;
    top: 0;
    left: 0;
}
.home .box.promotion.B_LIST .responsivebox div.image, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
    margin: 0;
    height: 100%;
}
.home .box.B_BOXES .responsivebox div.image, .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
    margin: 0;
    overflow: hidden;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image { border-radius: 3px 0 0px 3px; }
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 { padding: 0 0 10px 0;}
.box.B_BOXES .responsivebox h2 a, .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a, .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a {
    width: 100%;
    display: block;
}
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox h2, .box.promotion.B_LIST.HA_Boxes .responsivebox h2 a {
    letter-spacing: 1px;
    color: #2e2e2e;
    text-align: center;
    font: normal normal bold 20px var(--designfont);
    padding-bottom: 0;
}
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2 a {
    letter-spacing: 1px;
    color: #2e2e2e;
    text-align: center;
    font: normal normal bold 20px var(--designfont);
    text-decoration: none;
    padding-bottom: 0;
}
.box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody {
    width: 100%;
    letter-spacing: 0;
    color: #2e2e2e;
    font: normal normal 400 14px var(--designfont);
    text-align: center;
}
.home .box.promotion.HA_Boxes_Top .responsivebox div.image img, .box.promotion.HA_Boxes .responsivebox div.image img {
    vertical-align: bottom;
    height: 100% !important;
    object-fit: cover;
    transition: transform .3s ease-out;
    transform: scale(1.0);
}
.inner .box.promotion.HA_Boxes .responsivebox div.image img { width: 100%; border-radius: 0; }
.home .box.promotion.HA_Boxes_Top .responsivebox:hover div.image img, .box.promotion.HA_Boxes .responsivebox:hover div.image img { transform: scale(1.15);}
.home .box.promotion.B_PR { position: relative;}
.home .box.promotion.B_PR .body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    column-gap: 20px;
    row-gap: 35px;
}
.home .box.promotion.B_PR .summaryDisplay .body { display: none; }
.home .box.promotion.B_PR .summaryDisplay {
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    background: #fff;
    height: 100% !important;
    padding-top: 0;
    border-radius: 3px;
}
.home .item.summaryDisplay .image.left, .home .item.summaryDisplay .image.right, .home article.summaryDisplay .image.left, .home article.summaryDisplay .image.cyclerSlide, .home article.summaryDisplay .image.right { width: 100% !important;}
.home .summaryDisplay .image img {
    width: 100% !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    object-fit: cover;
    height: 265px !important;
}
.home .box.promotion article.summaryDisplay h3, .home .box.promotion article.summaryDisplay .newsdatetime { padding: 0 30px; line-height: 1; }
.home .box.promotion article.summaryDisplay .newsdatetime { padding: 8px 30px 20px;  }
.home .box.promotion.B_PR .summaryDisplay div.image {
    float: none;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100% !important;
    padding-bottom: 15px;
    max-height: 265px !important;
}
.home .box.promotion.B_PR .summaryDisplay div.image img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 100%;
    text-align: center;
    -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.15);
    -webkit-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.home .box.promotion.B_PR .summaryDisplay:hover div.image img {
    -moz-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}
.box.promotion.B_EV .box.B_EV .body._moderncalendar {
    display: flex;
    flex-direction: column;
    gap: 35px;
    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: 3px;
    box-shadow: 0px 3px 6px #00000029;
}
.nogroup.Below .box.promotion.B_EV .body .box.B_EV ._eventsbox.HA_Cal_ModernPlusRight {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox {
    flex-basis: 100%;
    max-width: 100%;
    padding-top: 0;
}
.nogroup.Below {
    background: url('./images/community-calendar-bg.jpg');
    background-repeat: repeat-x;
    background-size: cover;
    padding: 50px 40px 150px;
    position: relative;
}
._calendarbox.HA_Cal_ModernPlusRight div.seeallitems {
    position: absolute;
    margin-top: 0;
    margin-bottom: 0;
    bottom: 3%;
    width: fit-content;
    z-index: 9;
}
._calendarbox.HA_Cal_ModernPlusRight div.seeallitems {
    left: calc(50% + -113px);
    top: unset;
    margin-left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(-40%);
}
._eventsbox.HA_Cal_ModernPlusRight .summaryDisplay h3 { padding: 0 !important; }
.field.category { padding: 0;}
.home ._eventsbox .summaryDisplay .body { display: none;}
div.seeallitems a {
    color: #fff;
    text-decoration: none;
    min-width: 220px;
    background: none;
    padding: 10px 40px;
    transition: background 300ms ease;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 50px;
    margin-bottom: 30px;
    border-radius: 25px;
    border: 2px solid #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font: normal normal bold 16px var(--designfont);
    justify-content: center;
}
div.seeallitems a:hover {
    border: 2px solid #595847;
    color: #fff;
    background: #595847;
}
._moderncalendar td.calDay {
    color: #2e2e2e;
    font-weight: 400;
    font-size: 15px;
}
._moderncalendar .calToday .calDayNum { font-weight: 400; }
._moderncalendar .calDay .calDayNum { width: 30px; height: 30px; line-height: 1.5; }
.nogroup.Below .box.promotion.B_EV > h2 {
    letter-spacing: 2px;
    color: #ffffff;
    font: normal normal bold 30px var(--designfont);
    margin-bottom: 25px;
    line-height: 37px;
}
.newsdatetime time, .eventsdatetime time {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2e2e2e;
    font: normal normal 600 16px var(--designfont);
    margin-bottom: 0;
}
.home .box.promotion.B_PR .summaryDisplay:nth-child(3n + 1) { background: rgb(96 67 61 / 100%); }
.home .box.promotion.B_PR .summaryDisplay:nth-child(3n + 2) { background: rgb(80 89 98 / 100%); }
.home .box.promotion.B_PR .summaryDisplay:nth-child(3n) { background: rgb(89 88 71 / 100%); }
.home .box.promotion.B_PR .summaryDisplay h3 a, .home .box.promotion.B_PR .summaryDisplay .newsdatetime time { color: #fff !important; }
.home .box.promotion.B_PR .summaryDisplay h3 a:focus { outline: 1px dashed #fff; }
.home div.readmore.small, .inner div.readmore.small {
    font-weight: bold;
    text-align: center;
    bottom: 0;
    margin-top: 0;
    position: relative;
}
.inner div.readmore.small { text-align: left; margin-top: 15px; }
.nogroup.TopContent .box.promotion.B_PR > h2 {
    letter-spacing: 2px;
    color: #2e2e2e;
    font: normal normal bold 30px var(--designfont);
    margin-bottom: 25px;
    line-height: 1;
}
.box.promotion.HA_Boxes .responsivebox p { text-align: center; }
.nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a, .box.promotion.HA_Boxes .responsivebox p a {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #595847;
    font: normal normal bold 16px var(--designfont);
    border: 2px solid #595847;
    background: none;
    text-decoration: none;
    display: inline-flex;
    min-width: 200px;
    min-height: 50px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a:hover, .box.promotion.HA_Boxes .responsivebox p a:hover { color: #fff; background: #595847; }
footer .footerCol {
    display: flex;
    flex-direction: column;
}
footer.main .footer-bottom { flex-direction: column; background: #60433d; padding: 20px 40px; }
footer.main .footer-top { padding: 60px 40px; }
.newSocialTools {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 10px 0;
    justify-content: center;
}
.pt-35 { padding-top: 35px; }
.visible-lg { display: none; }
.nogroup.Above { padding: 65px 40px; }
.home .TopContent { position: relative;}
.home .box.promotion.B_PR .summaryDisplay:hover h3 a { text-decoration: underline; }
.home ._eventsbox article.summaryDisplay:hover h3 a { color: rgb(80 89 98 / 100%); text-decoration: underline; }
._moderncalendar .calDay.calGrayDay { color: #595959;}
.top-text a:focus { outline: 1px dashed #fff; }
nav.slab.horizontal.block > ul > li.threecol > ul > li { padding-left: 35px;}
nav.slab.horizontal.block > ul > li.threecol > ul > li:first-of-type { padding-left: 0;}
nav.menu ul ul { padding: 0; }
nav.slab.horizontal.block > ul > li > ul > li:last-child, nav.slab.horizontal.block > ul > li.onecol > ul > li > ul > li:last-child, nav.slab.horizontal.block > ul > li.twocol > ul > li > ul > li:last-child, nav.slab.horizontal.block > ul > li.threecol > ul > li > ul > li:last-child {
    margin-bottom: 0;
}
.mobilemenu .top-nav-info, .mobilemenu .top-nav-info a { color: var(--mobileLinkColor); text-transform: capitalize; font-size: 18px; font-weight: 600; }
.mobilemenu .top-text {
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
}
.mobilemenu .fa-regular.fa-phone, .mobilemenu .fa-regular.fa-clock { color: #2e2e2e; margin-right: 7px; font-size: 18px; }
.inner .leftContent .insideLeftContent:has(> aside) {
    background: #f1eee9;
    padding: 35px 30px;
    border-radius: 3px;
    margin: 5px 0 15px;
}
.inner nav.box.subsections.desktoponly > h2 { display: none;}
.inner h1 { letter-spacing: 2px; }
.inner h1, .inner h2, .inner h3, .inner h4, .inner h5, .inner h6 {
    text-align: left;
    padding: 8px 0;
    text-transform: capitalize;
    font: normal normal bold 30px var(--designfont);
    color: #2e2e2e;
    letter-spacing: 1px;
}
.inner h2 { font-size: 25px; }
.inner h3 { color: #595847; font-size: 20px; }
.inner h4 { font-size: 20px; letter-spacing: 2px; }
.inner h5 { font-size: 18px; color: #595847; letter-spacing: 0px; }
.inner h6 { font-size: 16px; }
nav.subsections li { padding: 5px 0;}
.fa-solid.fa-print { font-weight: 400; }
.container form { max-width: 100%;}
.insideRightContent h2 { display: inline-block; width: 100%; }
.inner ._eventsbox.ModernPlusRight { width: 100%; }
.inner .mainContent ._calendarbox.ModernPlusRight { width: 100%; }
.inner div.seeallitems a { border: var(--buttonborder); color: var(--buttoncolor); display: inline-flex; margin-top: 45px; margin-bottom: 0; }
.inner div.seeallitems a:hover { color: var(--buttoncolorhover); }
.mainContent .box.promotion.HA_Boxes .responsivebox { width: 100%; }
.top-text a:hover, a:hover .top-nav-info { text-decoration: underline; }
.inner-header { display: none; }
.B_MEET .boxdate { border-radius: 3px; }
.d1, .d2 { display: flex; flex-direction: column; }
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:first-of-type {
    margin-left: 0;
    margin-right: 10px;
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
    position: relative;
    width: 100% !important;
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox h2, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox h2 {
    padding-bottom: 0;
    padding-top: 20px;
}
.home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox .boxbody { padding: 0 20px 20px; }
._eventsbox.HA_Cal_ModernPlusRight .summaryDisplay h3 a { letter-spacing: 1px; }
._eventsbox h2 {
    font: normal normal bold 18px var(--designfont);
    color: #fff;
    letter-spacing: 1px;
}
._moderncalendar .calMonth .chevron:hover { color: #505962; }
nav.menu>ul li a .triangle {
    margin: 0 0 0 7px;
    padding: 1px 0 1px 3px;
}
._eventsbox article.summaryDisplay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 0 0 86px;
    margin: 25px 0;
}
.listingCheck { text-align: left; padding-top: 3em; }
.listingCheck a {
    font: var(--buttonfont);
    border: var(--buttonborder);
    background: none;
    color: var(--buttoncolor);
    border-radius: var(--buttonradius);
    padding: var(--buttonpadding);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.listingCheck a:hover { background-color: var(--buttonbghover); color: var(--buttoncolorhover); text-decoration: none; }
.news-content { padding-top: 15px; }
.inner .news-content { padding-top: 0; }
.inner .box.B_PR .summaryDisplay .image img {
    height: 110px !important;
    object-fit: cover;
    margin-bottom: 0;
}
.inner .box.B_PR .summaryDisplay .body { display: none; }
.inner .box.B_PR .container.content div.left { margin-bottom: 0; }
.calendar-container .calendar-body .calendar-dates li a.event > div { background: 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: 40px 40px 300px;
        background: url('./images/internal-footer-bg.jpg');
        background-repeat: no-repeat;
        background-position: bottom;
    }
    .home .content {
        background: #f1eee9;
        padding: 50px 40px 40px;
    }
}

@media (min-width:500px) {
    .slider_owl div.item, .singlepic { height: 600px; }
    .home .description h1 span { font-size: 35px; }
    .home .description h1 { font-size: 20px; }
    .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody { font-size: 16px; }
    ._moderncalendar .calDay .calDayNum {
        width: 40px;
        height: 40px;
        line-height: 1.98;
    }
    ._moderncalendar .calMonth .calMonthName, ._moderncalendar .calMonth .calYear { font-size: 20px; }
}

@media (min-width: 600px) {
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 258px;
        padding: 50px 36px 50px calc(var(--box-img-width) + 36px);
    }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
        position: absolute;
        width: var(--box-img-width) !important;
    }
    .box.promotion.HA_Boxes .responsivebox div.image img, .box.promotion.HA_Boxes_Top .responsivebox div.image img { height: 100% !important; }
    .nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a { min-width: 145px; }
}

/* 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: 750px) {
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 350px;
        padding: 43px 22px 43px calc(var(--box-img-width) + 22px);
    }
    .nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a { min-width: 200px; }
}

@media (min-width:900px) {
    .content {padding: 0 60px;}
    .leftContent { padding: 0 20px 20px 0; }
    .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; }
    .home .mainContent .insideMainContent,
    .home .leftContent .insideLeftContent,
    .home .rightContent .insideRightContent,
    .inner .leftContent .insideLeftContent,
    .inner .rightContent .insideRightContent {
        /* border: 1px solid #ccc;
        background: #eee; */
    }
    .alertcontainer button.closealerts { top: calc(50% - 15px); }
    .home .slider_arrowwrap .controls { bottom: 32%; }
    .filmstrip_arrowwrap .controls { padding: 0 40px; }
    .slider_wrap1, .singlepic, .innerimage { margin-top: -238px; }
    .home .box.promotion.B_PR .summaryDisplay { width: calc(100% / 3); }
    .box.promotion.B_EV .box.B_EV .body._moderncalendar { padding: 0; }
    .home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._calendarbox { padding: 35px; }
    .home ._eventsbox article.summaryDisplay { padding: 20px 0 15px 35px; }
    .home div.readmore.small {
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
    }
    .home .description h1 { font-size: 25px; }
    .home .description h1 span { font-size: 50px; }
    .inner .leftContent .insideLeftContent:has(> aside) {
        margin-top: 0;
        padding: 15px 30px 300px;
    }
    .inner .leftContent .insideLeftContent {
        background: #f1eee9;
        border-radius: 0;
        border-radius: 3px;
        padding: 15px 30px 300px;
        overflow: hidden;
        position: relative;
    }
    .leftContent .box, .rightContent .box { padding: 0;}
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 180px;
        padding: 43px 22px 43px calc(var(--box-img-width) + 22px);
    }
    .mainContent .box.promotion.HA_Boxes_Top .responsivebox { width: calc(49.5% - 50px) !important; }
    .mainContent .box.promotion.HA_Boxes .responsivebox { width: 100% !important; }
    .insideLeftContent h2 { margin-top: 35px; }
    .news-content { padding-top: 0; }
    .inner .box.B_PR article.summaryDisplay .image.left { margin-bottom: 0; }
    .home .description h1 span { letter-spacing: 3px; }

    /* 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;
    } */

	.breadcrumbs > a:first-of-type:hover { text-decoration: none !important; }

    .inner .breadcrumbs {
        display: flex;
        margin-bottom: 20px;
		justify-content: left;
		align-items: center;
        margin: 0;
        flex-wrap: wrap;
    }

    .inner .breadcrumbs a {
        padding-right: 0;
        text-decoration: none;
        padding-top: 0;
    }

    .inner .breadcrumbs a > span, .inner .breadcrumbs h2 {
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        font: normal normal 700 16px var(--designfont);
    }
    .inner .breadcrumbs h2 { color: #505962; }

    .inner .breadcrumbs a::after {
        content: "\7c";
        font-family: "Font Awesome 6 Pro";
        padding-left: 7px;
        margin-right: -5px;
        font-weight: 700;
        position: relative;
        bottom: -2px;
    }

    .inner .breadcrumbs a:hover { color: #505962; }
    .inner .breadcrumbs nav ul { list-style: none; padding-left: 0; }
    .inner .breadcrumbs nav ul li { margin: 0; float: left; }
    .inner .breadcrumbs nav ul > li:last-of-type > a { color: #505962; }
    .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; padding-top: 1.5rem; }
    .innerimage, .inner .singlepic, .inner .slider_owl div.item { height: 550px; }

    div.banner { position: relative; }

    .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 {
        position: relative;
        bottom: auto;
        top: auto;
        right: auto;
        left: auto;
        display: inline-flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 60px 15px 60px;
        word-spacing: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: right;
        z-index: 9;
        background: rgb(96 67 61 / 85%);
    }

    .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: 3px;
        width: 280px;
        line-height: normal;
        background: none;
        border: 2px solid #fff;
        border-radius: 50px;
    }
    .searchSocial .search.bar .searchField {
        font-size: 15px;
        padding: 3px;
        width: 82%;
        font-family: var(--designfont);
        color: #fff;
        font-weight: 600;
    }
    .searchSocial .search.bar .searchMag { margin: 5px 15px 5px 5px; color: #fff; }
    .searchSocial .search.bar .searchMag:focus { outline: 1px dashed #fff; }
    .searchSocial .search.bar .searchMag:hover { color: #fff; }
    .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: #fff; margin-right: 5px; }
    .searchSocial .airquality { margin-left: 20px; }
    .searchSocial .openweather a, .searchSocial .airquality {
        color: #fff;
        font-size: 16px;
        font-family: var(--designfont);
        font-weight: 600;
        text-decoration: none;
    }

    .searchSocial .openweather a:hover {
        color: #fff;
        text-decoration: underline;
    }
    .searchSocial .openweather a:focus {outline: 1px dashed #fff;}

    .container.content div.left, .container.content div.cyclerSlide {
        float: left;
        margin: 0 25px 35px 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: 0 135px;}
    .filmstrip_arrowwrap { display: block; }

    .desktoponly { display: block; }
    .notifications .notification { font-size: 12pt; }
    .slider_owl div.item, .singlepic { height: 850px; }

    .inner .leftContent { width: 40%; }
    .inner .rightContent { padding: 20px 0; width: 100%; }
    .inner .mainContent.hasLeft.hasRight, .inner .mainContent.hasLeft { width: 60%; padding: 50px 0 20px 20px; }

    .B_MEET .meetings.search .button { margin-top: 0; }
    .top-nav-info { display: none; }
    nav.horizontal.block>ul>li>a { padding: 27px 25px; }
    .singlepic .description, .slider_owl .description { height: 90%; }
    .home .slider_arrowwrap .controls { bottom: 24%; }
    .nogroup.Above { padding: 65px 60px; }
    .home .box.promotion.B_PR .body { flex-direction: row; }
    .nogroup.Below { padding: 50px 60px 150px; }
    .home .content { padding: 50px 60px 140px; }
    .inner .content { padding: 70px 60px 300px; }
    footer.main .footer-top { padding: 60px 60px;  }
    footer.main .footer-bottom { padding: 20px 60px; }
    .inner .inner-header.hasLeft {
        position: absolute;
        display: block;
        top: 65px;
        left: calc(40% + 33px);
        right: 60px;
    }
    .inner .inner-header {
        position: absolute;
        display: block;
        top: 45px;
        right: 60px;
        left: 60px;
    }
    .inner .inner-header .inner-header-container {
        display: flex;
        justify-content: space-between;
    }
    .docmanContainer .docmanSearch { width: 265px; }
    .slider_arrowwrap .controls { right: 60px; }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div {
        --box-img-width: 335px;
        padding: 50px 36px 50px calc(var(--box-img-width) + 36px);
    }
    .nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a { min-width: 200px; }
}

@media (min-width: 1000px) {
    .home .box.promotion.B_EV .box.B_EV .body._moderncalendar ._eventsbox { margin: -5px 0 -4px 0; }
}

@media (min-width: 1100px) {
    .filmstrip_owl .owl-stage-outer .owl-item .item a { height: 100%; }
    .filmstrip_owl div.item a { padding: 15px; }
    .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%; }
    ._calendarbox.HA_Cal_ModernPlusRight div.seeallitems { left: calc(50% + -100px); }
}

@media (min-width:1200px) {
    .inner .rightContent, .inner .leftContent { width: 25%; }
    .inner .mainContent.hasLeft { width: 75%; }
    .inner .mainContent.hasLeft.hasRight { width: 50%; }
    .searchSocial { padding: 15px 80px 15px 80px; }
    nav.horizontal.block { padding: 0 58px 0 58px; }
    nav.horizontal.block>ul>li>a { padding: 27px 15px; }
    .slider_wrap1, .singlepic, .innerimage { margin-top: -140px; }
    .singlepic .description, .slider_owl .description { height: 90%; }
    .home .slider_arrowwrap .controls { bottom: 27%; }
    .nogroup.Above { padding: 65px 80px; }
    .home .box.promotion.B_PR .body { column-gap: 35px; }
    .nogroup.Below { padding: 50px 80px 150px; }
    .home .content { padding: 50px 80px 140px; }
    .inner .content { padding: 70px 80px 300px; }
    footer.main .footer-top, footer.main .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-content: center;
        width: 100%;
        align-items: center;
    }
    footer.main .footer-top { padding: 60px 80px; }
    footer.main .footer-top > div {
        margin-bottom: 0;
        text-align: left;
    }
    footer.main .text, footer.main .text2, footer.main .text3, footer.main .text4, footer.main .text5, footer.main .text6, footer.main .text7, footer.main .text8 { text-align: left; }
    footer .footerCol { flex-direction: row; }
    .popular-links { display: flex; column-gap: 15px; flex-direction: column; }
    footer.main .footer-bottom { padding: 20px 80px; }
    footer.main h4 { text-align: left; margin-top: 0;}
    .newSocialTools, .social-row { justify-content: flex-start; }
    .pt-35 { padding-top: 0; }
    .home section.box.promotion.B_LIST {  grid-template-columns: 1fr 1fr; }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div, .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 250px;
        padding: 50px 36px 50px calc(var(--box-img-width) + 36px);
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div { --box-img-width: 350px; padding: 43px 22px 43px calc(var(--box-img-width) + 22px); }
    .inner .inner-header.hasLeft { right: 80px; left: calc(25% + 63px); }
    .inner .inner-header { right: 80px; left: 80px; }
    .inner .rightContent { padding: 50px 0 20px 40px; }
    .inner ._eventsbox.ModernPlusRight { width: 48%; }
    .inner .mainContent ._calendarbox.ModernPlusRight { width: 48%; }
    .slider_wrap1, .singlepic, .innerimage { margin-top: -154px; }
    .slider_arrowwrap .controls { right: 80px; }
    .d1, .d2 { flex-direction: row; column-gap: 30px; }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
        --box-img-width: 250px;
        width: var(--box-img-width) !important;
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
        --box-img-width: 330px;
        width: var(--box-img-width) !important;
    }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:last-of-type {
        margin-left: 0;
        margin-right: 0;
    }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox:first-of-type {
        margin-left: 0;
        margin-right: 25px;
    }
    .nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a { min-width: 145px; }
}

@media (min-width: 1300px) {
    .top-nav-info { display: inline-flex; }
    footer.main .footer-bottom { flex-direction: row; }
    .inner .inner-header.hasLeft { left: calc(25% + 60px); }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div { --box-img-width: 320px; padding: 43px 22px 43px calc(var(--box-img-width) + 22px); }
    .nogroup.Above .box.promotion.B_LIST.HA_Boxes_Top .responsivebox .boxbody p a { min-width: 200px; }
    .box.promotion.HA_Boxes .responsivebox p a { min-width: 200px; }
}

@media (min-width:1400px) {
    nav.horizontal.block>ul>li>a { padding: 27px 35px; }
    .slider_owl div.item, .singlepic { height: 850px; }
    .filmstrip_wrap1 .owl-stage {
        min-width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .slider_wrap1, .singlepic, .innerimage { margin-top: -155px; }
    .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;
    }
    .popular-links { column-gap: 40px; }
    footer.main .footer-bottom { display: flex; }
    .docmanContainer .docmanSearch { width: unset; }
    .mainContent .box.promotion.HA_Boxes .responsivebox { width: calc(49.5% - 30px) !important; }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 180px;
        padding: 43px 22px 43px calc(var(--box-img-width) + 22px);
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
        --box-img-width: 180px;
        width: var(--box-img-width) !important;
    }
}
@media (min-width: 1500px) {
    .popular-links { flex-direction: row; }
    footer .footerlogo { padding-right: 35px;}
    .hidden-lg { display: none; }
    .visible-lg { display: block; }
} 
@media (min-width:1600px) {
    .slider_owl div.item, .singlepic { height: 916px; }
    .searchSocial { padding: 15px 150px 15px 150px; }
    nav.horizontal.block { padding: 0 115px 0 115px; }
    .filmstrip_owl .owl-stage-outer .owl-item .item { padding: 0 15px; }
    .nogroup.Above { padding: 65px 150px; }
    .home .content { padding: 50px 150px 140px; }
    .inner .content { padding: 70px 150px 300px; }
    .nogroup.Below { padding: 50px 150px 150px; }
    footer.main .footer-top { padding: 60px 150px;}
    footer.main .footer-bottom { padding: 20px 150px; }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div {
        --box-img-width: 260px;
        padding: 50px 50px 50px calc(var(--box-img-width) + 36px);
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 200px;
        padding: 43px 22px 43px calc(var(--box-img-width) + 22px);
    }
    .inner .inner-header.hasLeft { right: 150px; left: calc(25% + 94px);}
    .inner .inner-header { right: 150px; left: 150px; }
    .slider_arrowwrap .controls { right: 150px; }
}
@media (min-width: 1700px) {
    .filmstrip_arrowwrap .controls { display: none; }
    .inner .inner-header.hasLeft { left: calc(25% + 82px); }
}
@media (min-width: 1800px) {
    .inner .inner-header.hasLeft {  left: calc(25% + 85px); }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox > div {
        --box-img-width: 350px;
        padding: 50px 50px 50px calc(var(--box-img-width) + 36px);
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox > div {
        --box-img-width: 230px;
        padding: 50px 30px 50px calc(var(--box-img-width) + 30px);
    }
    .home .box.promotion.B_LIST.HA_Boxes_Top .responsivebox div.image {
        --box-img-width: 330px;
        width: var(--box-img-width) !important;
    }
    .inner .box.promotion.B_LIST.HA_Boxes .responsivebox div.image {
        --box-img-width: 230px;
        width: var(--box-img-width) !important;
    }
}
@media (min-width: 1900px) {
    .inner .inner-header.hasLeft { left: calc(25% + 95px); }
}
@media (min-width: 1950px) {
    .inner .content { background-size: 100% 350px; }
}