<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/


/*--------------------------------------------------------
    FONT ASSIGNMENTS
--------------------------------------------------------*/

body {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: #4D4D4D;
}

p {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: #4D4D4D;
    line-height: 24px;
    margin-bottom: 20px;
}

#subpage-main p:empty {
    display: none;
}


/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/


/*--------------------------------------------------------
    H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #3A3A3A;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 36px;
    color: #333333;
}

h2 {
    font-size: 20px;
    color: #3A3A3A;
}

h3 {
    font-size: 18px;
    color: #3A3A3A;
}

h4 {
    font-size: 16px;
}

h1.title {
    margin-top: 15px;
}

h1.title:empty {
    display: none;
}


/*^^Hides the extra margin that is added on pages without a title*/

#subpage-main p:not(:empty)+h2,
#subpage-main p:not(:empty)+h3,
#subpage-main p:not(:empty)+h4,
#subpage-main ul+h2,
#subpage-main ul+h3,
#subpage-main ul+h4,
#subpage-main table+h2,
#subpage-main table+h3,
#subpage-main table+h4 {
    margin-top: 1.5em;
}

#subpage-main h2+ul,
#subpage-main h3+ul,
#subpage-main h4+ul {
    margin-top: -.75rem;
    /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}


/*--------------------------------------------------------
    LINKS
--------------------------------------------------------*/

a {
    color: ;
}

a:hover,
a:focus {
    color: ;
}

a.button {}

a.button:hover,
a.button:focus {
    text-decoration: none;
}

a.button+* {
    padding-top: 1.5em;
}


/*--------------------------------------------------------
    Objects
--------------------------------------------------------*/

#subpage-main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

figcaption {
    font-style: italic;
    font-size: .9em;
    padding-top: 5px;
}

@media (max-width: 767px) {
    figcaption {
        font-size: 1em;
    }
}

@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}

blockquote {
    font-size: inherit;
}


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
}

#subpage-main table td,
#subpage-main table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}

#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}

#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

#subpage-main table tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075);
}

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}


/*--------------------------------------------------------
                     TOP HEADER
--------------------------------------------------------*/

#top-header {
    background: #1C2277;
    height: 40px;
}

#top-right-wrap {
    text-align: right;
}

.top-nav-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.top-nav-wrap ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.top-nav-wrap ul li {
    display: inline-block;
    position: relative;
    float: left;
    list-style-type: none;
    padding: 8px 10px;
    cursor: pointer;
}

.top-nav-wrap ul li.hasChild b.caret {
    color: #fff;
}

@media (max-width: 767px) {
    .top-nav-wrap ul li {
        width: 100%;
        margin: 3px 0;
        text-align: center;
    }
}

.top-nav-wrap ul li a {
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-decoration: none;
    outline: none;
}

@media (min-width: 990px) and (max-width: 1199px) {
    .top-nav-wrap ul li a {
        font-size: 15px;
    }
}


/*top menu dropdown*/

.top-nav-wrap ul li ul {
    display: none;
}

.top-nav-wrap ul li:hover ul {
    display: block;
    background: #E57F39;
    position: absolute;
    z-index: 1;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-top: 9px;
    min-width: 160px;
    text-align: left;
}

.top-nav-wrap ul li ul li {
    display: block !important;
    float: none;
    padding: 6px 15px;
    border-bottom: 1px solid #F7931E;
}

.top-nav-wrap ul li ul li:hover {
    background: #F7931E;
}


/*top menu - mobile */

#mobileMenuWrapper #mobile-menu li.top-menu-mobile ul li ul {
    display: none;
}

#mobileMenuWrapper #mobile-menu li.top-menu-mobile ul li:hover ul {
    display: block;
}

#mobileMenuWrapper #mobile-menu li.top-menu-mobile .caret {
    float: right;
    position: relative;
    top: 10px;
    color: #fff;
}

#mobileMenuWrapper #mobile-menu li.top-menu-mobile&gt;ul:first-child {
    background: transparent;
    border-bottom: 3px solid #0073E4;
    padding-bottom: 20px;
}

#mobileMenuWrapper #mobile-menu li.top-menu-mobile&gt;ul:first-child li:last-child {
    border-bottom: 0px;
}

#mobileMenuWrapper #mobile-menu li.top-menu-mobile&gt;ul&gt;li.hasChild&gt;ul&gt;li a:before {
    content: "";
    background: #fff;
    height: 1px;
    width: 10px;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    top: -5px;
}


/* Social Media Icons */

.social-media-outside-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 8px;
}

.social-media-outside-wrap svg {
    width: 22px;
    height: 22px;
}

.social-media-wrap {
    float: left;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .social-media-wrap {
        display: inline-block !important;
    }
}

.social-media-outside-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-media-outside-wrap ul&gt;li {
    position: relative;
    vertical-align: middle;
    margin-right: 6px;
}

.social-media-outside-wrap ul&gt;li:last-child {
    margin-right: 0px;
}

.social-media-outside-wrap ul&gt;li:hover svg .cls-2 {
    fill: #FFDD00 !important;
}


/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
}

#login-wrap a {
    background: #E57F39;
    color: #fff;
    padding: 10px 20px;
    position: relative;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

#login-wrap a:hover,
#login-wrap a:focus {
    background: #F7931E;
}


/* Mobile Login */

.mobile-login-wrap {
    margin-top: 25px;
}

.mobile-login-wrap a {
    background: #4F85C4 !important;
    color: #fff;
    padding: 8px 19px 11px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #4F85C4;
    border-radius: 2px;
    width: 150px !important;
}


/*--------------------------------------------------------
                    Search Bar
--------------------------------------------------------*/

#search-input {
    max-width: 220px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    margin-right: -5px;
    top: 0px;
    position: relative;
}

@media (max-width: 360px) {
    #search-input {
        max-width: 180px;
    }
}

.search-main-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.search-input {
    background: transparent;
    border: 2px solid #fff;
}

#search-input ::-webkit-input-placeholder {
    color: #fff;
}

#search-input :-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

#search-input ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

#search-input :-ms-input-placeholder {
    color: #4D4D4D;
}

.icon-search:before {
    content: url("../images/search-icon.png");
}

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 39px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 0px 15px;
}

#search-input button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 39px;
    border-radius: 0px;
    outline: none;
}

.input-group.search-input-wrap {
    border: 0;
    background: #2C3584;
    border-radius: 0;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 0px;
    padding-left: 0px;
    width: 260px;
}

li.mobile-search-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-bottom: 0px !important;
}

li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #bcb2d8;
    background: #fff;
}


/*li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}*/

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #646464;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    padding: 0px 12px;
    font-weight: normal;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #646464;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #646464;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #646464;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #646464;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 0px 10px;
    height: 31px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}


/*--------------------------------------------------------
                      MAIN HEADER
--------------------------------------------------------*/

#main-header {
    padding: 5px 0px;
}

svg#main-logo {
    max-width: 100%;
    width: 400px;
    height: 105px;
}

#right-side-wrap {
    text-align: right;
    margin-top: 35px;
}


/*--------------------------------------------------------
                    Desktop Navigation
--------------------------------------------------------*/

.dropdown-menu li {
    width: 100%;
}

.nav&gt;li&gt;a:hover,
.nav&gt;li&gt;a:focus {
    background-color: transparent;
}


/*--------------------------------------------------------
                    Index / Main Body
--------------------------------------------------------*/

main {
    min-height: calc(100vh - 44px - 149px - 48px - 130px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

main#subpage-main {
    padding-top: 20px;
}

#subpage-main #mms-main {
    margin-bottom: 2.5em;
}

@media (max-width: 900px) {
    #subpage-main #mms-main {
        margin-bottom: 2em;
    }
}

@media (min-width: 767px) {
    #subpage-main .row {
        margin-bottom: 1em;
    }
}

@media (max-width: 767px) {
    #subpage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
}


/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/


/*----------------Slideshow----------*/

.slideshow-wrap {
    background-image: url(../images/slideshow-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0px;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
}

.slideshow-wrap .carousel-inner .item img {
    width: 100%;
    /*max-height: 500px;
    object-fit: cover;*/
}

.slideshow-wrap a {
    text-decoration: none;
}

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}

.carousel-control {
    margin: auto 0px;
    display: none;
}

.carousel-control.left {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Libre Baskerville', serif;
    background: rgba(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}

.carousel-control.right {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Libre Baskerville', serif;
    background: rgba(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 30px;
    margin-right: 15px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-control.left,
    .carousel-control.right {
        bottom: 35%;
    }
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {
        height: 38px;
        width: 38px;
        bottom: 55%;
    }
}

.carousel-control img {
    width: 16px;
    height: 24px;
    margin-top: 13px;
}

@media (max-width: 767px) {
    .carousel-control img {
        margin-top: 7px;
    }
}

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(0, 115, 228, 0.75);
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding: 0;
    margin: 0;
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 35px;
}

@media (max-width: 990px) {
    .carousel-caption {
        background: rgba(0, 115, 228, 0.75);
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        border: none;
    }
}

@media (max-width: 640px) {
    .carousel-caption {
        min-height: 200px !important;
    }
}

@media (max-width: 510px) {
    .carousel-caption {}
}

@media (max-width: 480px) {
    .carousel-caption {}
}

.caption-inside-wrap {
    padding: 14px 0px;
}

p.caption-text {
    font-size: 28px;
    font-weight: 700;
    display: block;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 0px;
    word-wrap: break-word;
    line-height: normal;
}

p.alt-text {
    font-size: 15px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: center;
    display: inline-block;
    word-wrap: break-word;
    line-height: 22px;
}

.carousel-indicators {
    bottom: 0px;
    margin-bottom: 5px;
}

.carousel-indicators li {
    width: 11px;
    height: 11px;
    margin-left: 6px !important;
    margin: 0 auto;
    background-color: #8FC9EF;
    border: 1px solid #8FC9EF;
    border-radius: 15px;
}

.carousel-indicators li.active {
    width: 11px;
    height: 11px;
    margin-left: 6px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}

.caption-text-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 74%;
}

.caption-btn-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    float: right;
    text-align: right;
    margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .caption-text-wrap {
        width: 64%;
    }
    .caption-btn-wrap {
        width: 35%;
    }
}

.caption-btn-wrap a {
    background: #4F85C4;
    border: 1px solid #4F85C4;
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border-radius: 1px;
    text-align: center;
}


/*----------------End Slideshow------*/


/*--------------------------------------------------------
                    News and Events Feeds
--------------------------------------------------------*/


/*--------------------------------------------------------
                    Index / Home Page
--------------------------------------------------------*/


/* Buttons */

.btn-wrap a {
    background: transparent;
    color: #666666;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

.btn-wrap a:hover {
    background: #E57F39;
}

.news-events-wrap {
    background: #F5F6F7;
    padding: 60px 0px 80px;
}

.news-events-wrap h2 {
    background: #1C2277;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 12px 20px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.news-events-wrap .col-content-wrap .btn-wrap {
    display: inline-block;
    float: right;
    margin: 0;
    margin-top: 12px;
    padding: 0;
}

.news-events-wrap .col-content-wrap .btn-wrap a {
    background: transparent;
    color: #666666;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    padding-right: 10px;
}

.news-events-wrap .col-content-wrap .btn-wrap a:after {
    display: inline-block;
    content: url(../images/view-icon.png);
    text-indent: 0;
    position: relative;
    z-index: 100;
    left: 10px;
    width: 17px;
    height: 12px;
    vertical-align: text-top;
}



/* Box style */
.box-style-wrap .column .col-content-wrap {
    border-top: 3px solid #E57F39;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
}
/* Box heading */
.box-heading {
    margin-bottom: 0px !important;
}
.box-heading h2 {
    background: #1C2277;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 12px 20px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}




/* News */

#news-inside-wrap .col-content-wrap {
    border-top: 3px solid #E57F39;
    background: #fff;
    padding: 35px 20px 0px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
}

.news-item {
    margin-bottom: 27px;
    min-height: 190px;
}

.news-image:empty,
#subpage-main .news-image:empty {
    min-width: 340px;
    height: 188px;
    background: rgba(0, 0, 0, 0.3);
}

.news-image,
#subpage-main .news-image {
    min-width: 340px;
    height: 188px;
}

.news-image img,
#subpage-main .news-image img {
    max-width: 100%;
    height: 188px;
    min-height: 188px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.news-date-title {
    padding: 15px 20px 5px;
    background: rgba(18, 20, 38, .7);
    min-width: 340px;
    position: relative;
    margin-top: -188px;
    bottom: auto;
    line-height: 16px;
    max-width: 100%;
    min-height: 188px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-details-inside-wrap:hover .news-date-title {
    background: rgba(18, 20, 38, .8);
}

.news-details-inside-wrap:hover .news-date-title a.news-title-link,
.news-details-inside-wrap .news-date-title a.news-title-link:hover {
    text-decoration: none;
    color: #fff !important;
    border-bottom: 2px solid #FFDD00;
}

.news-details-inside-wrap:hover .news-date-title .news-date img {
    filter: brightness(100%) hue-rotate(35deg) saturate(500%) contrast(200%);
}

.news-item .news-date {
    margin-bottom: 15px;
}

.news-item .news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.news-item .news-date span {
    font-size: 13px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    color: #fff;
}

h3.news-title {
    padding-bottom: 0px;
}

a.news-title-link {
    color: #fff;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    line-height: 30px;
}

a.news-title-link:hover {
    color: #2C4660 !important;
    text-decoration: underline;
}

.news-btn a {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}


/* Upcoming Events */

#events-inside-wrap .col-content-wrap {
    border-top: 3px solid #E57F39;
    background: #fff;
    padding: 35px 0px 0px 20px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
}

.event-item {
    margin-bottom: 25px;
}

.event-date-wrap {
    border: 1px solid #E6E6E6;
    background: #fff;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 50px;
    margin-right: 10px;
    border-radius: 2px;
    padding-bottom: 6px;
}

.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 76px);
    width: -webkit-calc(100% - 76px);
    width: -moz-calc(100% - 76px);
    position: relative;
    top: -2px;
}

.event-month {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: #E57F39;
    padding-top: 1px;
}

.event-day {
    color: #4D4D4D;
    font-size: 23px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 31px;
}

.event-date {
    color: #4D4D4D;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 10px;
}

#event-container {
    padding-left: 0px;
    margin-left: -15px;
}

.event-time {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.event-time img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}

h3.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    margin-bottom: 6px;
}

a.ev-title-link {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

a.ev-title-link:hover {
    color: #1A1A1A;
    text-decoration: none;
    border-bottom: 2px solid #FFDD00;
}

.event-content {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}


/* Join Us Section */

.join-outside-wrap {
    background-image: url(../images/join-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px 75px;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    margin-bottom: 60px;
}

.join-outside-wrap * {
    color: #fff;
}

#join-section-wrap .col-content-wrap {
    display: flex;
    background: #0071CE;
    align-items: center;
    justify-content: center;
}

#join-section-wrap .col-content-wrap .join-text-content {
    padding: 0px 20px 30px 25px;
}

#join-section-wrap .col-content-wrap .join-text-content:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid #0071CE;
    display: inline-block;
    position: relative;
    left: -43px;
    top: 20px;
}

#join-section-wrap .col-content-wrap .join-text-content h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    top: -15px;
    position: relative;
    padding-bottom: 0;
}

#join-section-wrap .col-content-wrap .join-text-content p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
}

#join-section-wrap .col-content-wrap .join-text-content a {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 2px solid #E57F39;
}

#join-section-wrap .col-content-wrap .join-text-content a:hover {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 2px solid #FFDD00;
}

.join-outside-wrap .btn-wrap {
    margin-top: 25px;
}

#join-section-wrap .btn-wrap a {
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    background: #E57F39;
    border-radius: 1px;
    padding: 12px 20px;
    border-bottom: 0px !important;
}

#join-section-wrap .btn-wrap a:hover {
    border-bottom: 0px !important;
    background: #F7931E;
}


/* Partner Organizations */

#partner-title-view .col-content-wrap {
    border-bottom: 3px solid #E57F39;
    margin-bottom: 35px;
}

#partner-title-view h2 {
    background: #1C2277;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 10px 20px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: -1px;
}


/*--------------------------------------------------------
                CSS Styles for Inner Pages
--------------------------------------------------------*/


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "â€¹";
}

.nivo-nextNav:after {
    content: "â€º";
}


/*--------------------------------------------------------
                        Footer
--------------------------------------------------------*/

footer#main-footer {
    background: #1C2277;
    padding: 50px 0px 48px;
    margin-top: 70px;
}

footer#main-footer p {
    color: #fff;
    font-size: 14px;
    font-family: 'Libre Baskerville', serif;
    margin: 0;
    line-height: 30px;
    font-weight: 400;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}

footer#main-footer a:hover {
    color: #D87D37;
}

footer#main-footer strong {
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
}

footer#main-footer span.footer-privacy {
    border-left: 1px solid #AFC6DB;
    margin-left: 14px;
    padding-left: 14px;
}

footer#main-footer .text-right a {
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 990px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
}

@media (max-width: 767px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    footer#main-footer p {
        margin-bottom: 5px;
    }
    footer#main-footer span.footer-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .back-top-wrap {
        padding-top: 0px !important;
        margin-bottom: 15px;
    }
}

.footer-credit-section .social-media-outside-wrap ul&gt;li {
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-credit-section .social-media-outside-wrap ul&gt;li:last-child {
    margin-right: 0px;
}

.footer-credit-section .social-media-outside-wrap ul&gt;li .social-media-outside-wrap svg {
    width: 30px;
    height: 30px;
}


/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}

.grid-bottom-featured-wrap {
    background-image: none;
}

.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}

.grid-bottom-featured-wrap-p {
    color: #323233;
}

#mycanvas #news-section-wrap .column,
#mycanvas #get-involved-wrap .column {
    min-height: 415px;
}


/*--------------------------------------------------------------
                      Modal Member Login
--------------------------------------------------------------*/

.modal {
    overflow-y: visible;
}

.modal-dialog {
    max-width: 280px;
    margin: 50px auto;
}

.modal-header {
    text-align: center;
}

.modal-body {
    padding: 15px 23px;
}

.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 14px;
    font-family: 'Libre Baskerville', serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #E57F39;
    border: 1px solid #E57F39;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    height: auto;
}

.login-form input[type="submit"]:hover,
.login-form input[type="submit"]:focus {
    background: #F7931E;
    border: 1px solid #F7931E;
    text-decoration: none;
}

.login-form a {
    color: #3A3A3A;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.login-form a:hover,
.login-form a:focus {
    color: #27313D;
}

.login-form input:last-of-type {
    width: 100px;
    margin: none;
}

h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

h4#myModalLabel {
    font-size: 22px;
    color: #4A4F56;
    padding-bottom: 0px;
}


/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/


/*----------- MEDIA QUERY --------------------*/

@media (min-width: 1332px) and (max-width: 1365px) {}

@media (max-width: 1200px) {
    .caption-wrapper {
        max-width: 970px;
    }
}

@media (min-width: 1000px) {
    .container {}
}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
    .news-image:empty,
    .news-image,
    .news-date-title,
    #subpage-main .news-image:empty,
    #subpage-main .news-image {
        min-width: auto;
    }
    .news-events-wrap h2 {
        font-size: 16px;
    }
    #join-section-wrap .col-content-wrap img {
        align-self: flex-start;
    }
    #join-section-wrap .col-content-wrap .join-text-content:before {
        left: -42px;
    }
}

@media (max-width: 991px) {
    .caption-wrapper {
        max-width: 750px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #search-icon-wrap {
        display: inline-block !important;
        vertical-align: middle;
        margin-right: 10px;
    }
    .news-image:empty,
    .news-image,
    .news-date-title,
    #subpage-main .news-image:empty,
    #subpage-main .news-image {
        min-width: auto;
    }
    #events-inside-wrap .col-content-wrap {
        padding-bottom: 10px;
    }
    #news-inside-wrap .col-content-wrap,
    #events-inside-wrap .col-content-wrap {
        height: auto !important;
    }
    #events-section-wrap {
        margin-top: 50px;
    }
    #join-section-wrap .col-content-wrap img {
        width: 425px !important;
        align-self: flex-start;
    }
    #join-section-wrap .col-content-wrap .join-text-content:before {
        left: -42px;
    }
}

@media (max-width: 767px) {
    .container {}
    #top-right-wrap {
        margin-top: 7px;
    }
    #search-icon-wrap {
        display: inline-block !important;
        vertical-align: middle;
        margin-right: 10px;
    }
    .news-image:empty,
    .news-image,
    .news-date-title,
    #subpage-main .news-image:empty,
    #subpage-main .news-image {
        min-width: auto;
    }
    #events-inside-wrap .col-content-wrap {
        padding-bottom: 10px;
    }
    #news-inside-wrap .col-content-wrap,
    #events-inside-wrap .col-content-wrap {
        height: auto !important;
    }
    #events-section-wrap {
        margin-top: 50px;
    }
    #join-section-wrap .col-content-wrap {
        flex-direction: column;
    }
    #join-section-wrap .col-content-wrap .join-text-content {
        padding-top: 20px;
    }
    #join-section-wrap .col-content-wrap .join-text-content:before {
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-bottom: 17px solid #0071CE;
        border-top: 0px;
        top: -33px;
        left: 0;
    }
    #partner-org-wrap img {
        margin: 0 auto 20px;
    }
}

@media (min-width: 560px) and (max-width: 767px) {}

@media (max-width: 580px) {}

@media (max-width: 480px) {
    .container {}
    #main-header {
        padding: 0;
    }
}

@media (max-width: 380px) {}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome,
    .div {}
}


/* Internet Browser */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {}


/* Grid added per #265362 */

.multi-column-grid:not(#mycanvas .mult-column-grid) {
    display: grid;
    gap: 15px 30px;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.multi-column-grid:not(#mycanvas .mult-column-grid)&gt;li {
    display: flex;
    justify-content: center;
}

.multi-column-grid img {
    margin: auto;
}</pre></body></html>