<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
--------------------------------------------------------*/
html {
    --side-margin: calc((100vw - var(--page-width) + 13px) / -2);
    /* 13px to compensate for width of scrollbar */
    overflow-x: hidden;
}
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}
p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    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: Tahoma, sans-serif;
    font-weight: 700;
    color: #26323F;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: Tahoma, sans-serif;
}

h1 {
    font-size: 34px;
    color: #26323F;
}
h1.title{
	display: none;
}
h2 {
    font-size: 30px;
    color: #26323F;
}
h3 {
    font-size: 26px;
    color: #26323F;
}
h4 {
    font-size: 22px;
}

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.*/
}




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


#main-header {
    padding: 15px 0px 10px;
}
svg#main-logo {
    max-width: 100%;
    width: 176px;
    height: 84px;
}

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


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

.search-sm-btns {
    display: inline-block;
    vertical-align: middle;
}
#search-input {
    max-width: 300px;
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    position: relative;
    margin-right: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        #search-input {
            max-width: 200px;
        }
    }
    @media (max-width: 420px) {
        #search-input {
            max-width: 230px;
        }
    }
    @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: #4D4D4D;
}

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

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

#search-input :-ms-input-placeholder {  
   color: #4D4D4D;  
}
.icon-search:before {
    content: url("../images/search-icon.png");
}
#search-input input {
    box-shadow: none;
    height: 38px;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    padding: 0px 12px;
    border: 0px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
#search-input button {
    background: #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 12px 0px;
    height: 38px;
    border-radius: 0px;
    outline: none;
    border-top: 0px;
    border-bottom: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.input-group.search-input-wrap {
    border: 1px solid #E6E6E6;
    background: #fff;
    border-radius: 3px;
}





/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 5px;
    margin-bottom: 0px;
    padding-left: 0px;
    width: 260px;
    margin-left: 15px;
    border-top: 0px !important;
    padding-bottom: 0px !important;
}
li.mobile-search-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-bottom: 0px !important;
}
/*li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}*/
.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 34px;
    color: #646464;
    font-size: 16px;
    font-family: 'Lato', sans-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: 4px 9px 0px;
    height: 34px;
    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;
}



/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
}
#login-wrap a {
    background: #26486A;
    border: 2px solid #26486A;
    color: #fff;
    padding: 7px 18px 10px;
    position: relative;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
}
#login-wrap a:hover, #login-wrap a:focus {
    background: #853275;
    border: 2px solid #853275;
    color: #fff;
}


/* Mobile Login */
li.mobile-login {
    margin-top: 12px;
    border: 0px !important;
}
li.mobile-login a {
    background: #26486A !important;
    width: 150px !important;
    margin-left: 15px !important;
    text-align: center;
    font-weight: 500 !important;
    border: 1px solid #758592 !important;
}



#join-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}
#join-wrap a {
    background: #853275;
    border: 2px solid #853275;
    color: #fff;
    padding: 8px 16px 9px;
    position: relative;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
}
#join-wrap a:hover, #join-wrap a:focus {
    background: #26486A;
    border: 2px solid #26486A;
    color: #fff;
}




/* Social Media Icons */


.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
    float: right;
}
.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-media-wrap ul&gt;li {
    float: left;
    position: relative;
    display: block;
    margin-right: 10px;
}
.social-media-wrap ul&gt;li:last-child {
    margin-right: 0px;
}
.social-media-wrap svg {
    width: 28px;
    height: 28px;
}

.social-media-wrap a:hover svg#twitter-icon .e, .social-media-wrap a:hover svg#linkedin-icon .e,
.social-media-wrap a:hover svg#fb-icon .e {
    fill: #F27900 !important;
    stroke: #F27900 !important;
}
.social-media-wrap a:hover svg#twitter-icon .f, .social-media-wrap a:hover svg#linkedin-icon .f,
.social-media-wrap a:hover svg#fb-icon .f {
    fill: #ffffff !important;
}


/* Mobile Social Media */

li.mobile-sm-wrap.mobile-sm-wrap.twitter-icon {
    margin-left: 15px;
}


.mobile-sm-wrap svg {
    width: 33px;
    height: 33px;
}
li.mobile-sm-wrap {
    border-bottom: 0px !important;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        li.mobile-sm-wrap {
            display: inline-block !important;
        }
    }
    @media (max-width: 767px) {
        li.mobile-sm-wrap {
            display: inline-block !important;
        }
    }
li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 5px;
}
li.mobile-sm-wrap {
    padding-left: 8px !important;
    border-top: 0px !important;
    padding-top: 3px !important;
}
li.mobile-sm-wrap.mobile-sm-wrap.twitter-icon {
    margin-left: 8px;
}

#main-header .social-media-wrap {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    margin-right: 10px;
}
#main-header .social-media-wrap li .cls-1 {
    fill: #184BA1;
}



/*--------------------------------------------------------
                    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 {
    margin-bottom: 35px;
    position: relative;
}
.slideshow-wrap .container  {
    width: 100%;
}
.slideshow-wrap img{
    width: 100%;
}  
.slideshow-wrap .carousel-inner .item img {
    max-height: 420px;
    object-fit: cover;
}
.slideshow-wrap a {
    text-decoration: none;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
#slide-row{
    margin-bottom: 10px;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}
.carousel-control {
    margin: auto 0px;
}
.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: 'Lato', sans-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: 'Lato', sans-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: relative;
    z-index: 100;
    background: #26486A;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding: 20px 0;
    margin: 0;
    min-height: 103px;
}
    @media (min-width: 990px) {
        .carousel-caption {
            width: 100%;
            min-height: auto !important;
        }
    }

p.caption-text {
    font-size: 26px;
    font-weight: 700;
    display: block;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    text-align: left;
    margin-bottom: 9px;
    word-wrap: break-word;
    line-height: normal;
    text-transform: capitalize;
}
p.alt-text {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Calibri', sans-serif;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 22px;
}

    @media (min-width: 768px) and (max-width: 990px) {
        p.alt-text {
        }
    }
    @media (max-width: 767px) {
        p.alt-text {
        }
    }

.slideshow-wrap .carousel-indicators {
    display: none;
}
.carousel-indicators {
    bottom: 0px;
    margin-bottom: 7px;
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #B8BFD1;
    border: 1px solid #B8BFD1;
    border-radius: 15px;
}
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 15px;
}




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

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


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


/* Buttons */
.btn-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
}
.btn-wrap a {
    background: #71B1C5;
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 22px 12px;
    color: #FFF;
}
.btn-wrap a:hover {
    background: #853275;
}



/* Welcome */
#welcome-section-wrap {
    margin-bottom: 20px;
}
#welcome-section-wrap h1 {
    padding-bottom: 20px;
    text-align: center;
    line-height: 46px;
}
#welcome-section-wrap p {
    margin-bottom: 25px;
}


/* Featured Section */
#featured-section-wrap {
    padding: 30px 0px;
}
#featured-section-wrap .col-content-wrap {
    margin-bottom: 30px;
}
#featured-section-wrap .col-content-wrap img {
    display: inline-block;
    vertical-align: text-top;
    width: auto;
}
#featured-section-wrap .col-content-wrap .featured-content {
    display: inline-block;
    vertical-align: text-top;
    width: 70%;
    margin-top: 12px;
    margin-left: 10px;
}
#featured-section-wrap .col-content-wrap .featured-content h4,
#featured-section-wrap .col-content-wrap .featured-content h4 a {
    font-size: 20px;
    color: #26486A;
    font-family: Tahoma, sans-serif;
    text-decoration: none;
}



/* Upcoming Events */
.events-section-outer-wrap:not(#gm-canvas .events-section-outer-wrap) {
    z-index: 100;
    position: relative;
    padding: 70px 0px;
    margin: 10px 0px;
}
.events-section-outer-wrap:not(#gm-canvas .events-section-outer-wrap):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    background: linear-gradient(90deg, rgba(38,72,106,0.60), rgba(38,72,106,0.60)) , url(../images/events-bg-wrap.png) no-repeat;
    background-position: center;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
}
#events-section-wrap {
    position: relative;
    z-index: 1;
}
#events-section-wrap h2:not(#gm-canvas #events-section-wrap h2) {
    padding-bottom: 35px;
    color: #fff;
    text-align: center;
}
.events-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 30px;
    margin-bottom: 2rem;
}
.event-item {
    display: flex;
    background: #26486A;
    /*box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);*/
    border-radius: 3px;
    min-height: 102px;
    margin-bottom: 25px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .event-item {
        }
    }
.event-details-wrap {
    padding: 5px 20px 10px;
}
h3.event-title {
    font-size: 17px;
    margin-top: 10px;
    padding-bottom: 8px;
}
a.ev-title-link {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    line-height: 21px;
    font-family: 'Lato', sans-serif;
}
a.ev-title-link:hover {
    color: #F3EABF;
    text-decoration: none;
}
#mms-main a.ev-title-link{
	color: #003356;
}
#mms-main a.ev-title-link:hover{
	color: #853275;
}
a.ev-more-info-link:hover {
    color: #337ab7;
}
.event-date, .event-location {
    display: inline-block;
    vertical-align: text-top;
}
.event-date {
    margin-bottom: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.event-location {
    margin-left: 35px;
}
.event-date img, .event-location img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.event-date span, .event-location span {
    display: inline-block;
    vertical-align: text-top;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ABC8D8;
}
.event-description {
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    color: #ABC8D8;
    margin-top: 3px;
    margin-bottom: 3px;
}
#events-section-wrap .btn-wrap {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 6px;
}
.events-btn a {
    color: #7A68AE;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}
.events-btn a:hover {
    color: #EA7C0F;
}




/* News */
#news-section-wrap {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.news-section-outside-wrap {
    background: #F9F9F9;
    padding: 60px 0px 35px;
}
#news-section-wrap h2 {
    text-align: center;
    color: #1A1A1A;
    font-size: 30px;
    padding-bottom: 25px;
}
.news-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 30px;
    margin-bottom: 2rem;
}
.news-item {
    display: flex;
    background: #FFFFFF;
    border-radius: 3px;
    min-height: 80px;
    margin-bottom: 30px;
    border: 1px solid #F2F2F2;
    padding: 12px 20px 17px;
}
.news-image img {
    max-width: 100%;
    width: 100%;
    min-height: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
    border-radius: 3px;
    margin-bottom: 8px;
}
.news-item h4 {
    padding-bottom: 0px;
}
a.news-title-link {
    color: #26486A;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
}
a.news-title-link:hover {
    color: #014870;
    text-decoration: none;
}
.news-date {
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.news-date span {
    display: inline-block;
    vertical-align: sub;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
}
.news-blurb {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: #4D4D4D;
    margin-top: 0px;
    margin-bottom: 15px;
}
#news-section-wrap .btn-wrap {
    margin-top: 20px;
    text-align: center;
}
.news-btn a {
    color: #184BA1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}
.news-btn a:after {
    content: url(../images/arrow-icon.png);
    width: 22px;
    height: 13px;
    display: inline-block;
    padding-left: 12px;
    position: relative;
    top: 2px;
}
.news-btn a:hover {
    color: #CE4527;
}
.news-btn a:hover:after {
    -webkit-filter: hue-rotate(130deg) contrast(180%) brightness(100%);
    filter: hue-rotate(130deg) contrast(180%) brightness(100%);
}




/* Career Opportunities */
.career-section-outer-wrap:empty {
    display: none;
}
.career-section-outer-wrap:not(#gm-canvas .career-section-outer-wrap) {
    position: relative;
    padding: 70px 0px;
    background: #26486A;
}
#career-section-wrap h2:not(#gm-canvas #career-section-wrap h2) {
    padding-bottom: 35px;
    color: #fff;
    text-align: center;
}
.career-content-wrap {
    background: #325A7C;
    /*box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);*/
    border-radius: 3px;
    min-height: 80px;
    margin-bottom: 25px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .career-content-wrap {
            min-height: auto;
        }
    }
.career-details-wrap {
    padding: 5px 20px 10px;
}
h3.career-title {
    padding-bottom: 8px;
}
.career-content-wrap h3.event-title {
    font-size: 17px;
    margin-top: 10px;
    padding-bottom: 0px;
}
.career-content-wrap a.ev-title-link {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    line-height: 21px;
    font-family: 'Lato', sans-serif;
}
.career-content-wrap a.ev-title-link:hover {
    color: #F3EABF;
    text-decoration: none;
}
.career-date {
    display: inline-block;
    vertical-align: text-top;
}
.career-date {
    margin-bottom: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.career-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.career-date span {
    display: inline-block;
    vertical-align: text-top;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ABC8D8;
}
.career-description {
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    color: #ABC8D8;
    margin-top: 3px;
    margin-bottom: 3px;
}
#career-section-wrap .btn-wrap {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.career-btn a {
    color: #7A68AE;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}
.career-btn a:hover {
    color: #EA7C0F;
}




/*--------------------------------------------------------
                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: "â€º" ;
}

.top-row {
	margin-top: 20px;
}

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

.footer-top-section {
    background: #11191E;
    padding: 35px 0px 17px;
    border-bottom: 1px solid #17232D;
}
.footer-top-section * {
    color: #fff;
}
.footer-top-section a {
    text-decoration: none;
}
.footer-left-wrap h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    font-family: Tahoma, sans-serif;
    padding-bottom: 12px;
}
.footer-right-wrap {
    line-height: 22px;
}
.footer-right-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: Tahoma, sans-serif;
    padding-bottom: 6px;
}
.footer-right-wrap img {
    max-width: 100%;
}
.social-media-wrap img {
    margin-left: 13px;
    margin-top: 8px;
}

    @media (max-width: 767px) {
        .footer-top-section .text-left, .footer-top-section .text-right {
            text-align: center;
        }
        .footer-top-section .text-right {
            margin-top: 40px;
        }
        .footer-left-wrap p {
            margin-bottom: 0px;
        }
        .social-media-wrap {
            float: none;
            margin-bottom: 20px;
        }
    }




footer#main-footer {
    background: #11191E;
    padding: 18px 0px;
}
footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 3px;
}
.footer-credit-section .text-left p:nth-child(2) {
    margin-top: 12px !important;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}
footer#main-footer a:hover {
    color: #337ab7;
}
footer#main-footer strong {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}
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;
    font-weight: 400;
}

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

        }

    }

    @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;
        }
    }




/*--------------------------------------------------------
                  Row/Column Background
--------------------------------------------------------*/


#light_blue_row {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 20px;
    color: #000;
}
#light_blue_row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #70b0c4;
    z-index: -1;
}
#light_blue_row p:not(#gm-canvas #light_blue_row p){
    color: #000 !important;
}


#dark_blue_row {
    position: relative;
}
#dark_blue_row:not(#gm-canvas #dark_blue_row) {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 20px;
    color: #fff;
}
#dark_blue_row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background: linear-gradient(90deg, rgba(38,72,106,0.60), rgba(38,72,106,0.60)) , url(../images/events-bg-wrap.png) repeat;
    z-index: -1;
    background-position: center;
    object-fit: cover;
    object-position: center;
    background-size: auto;
    overflow: hidden;
}
#dark_blue_row *:not(#gm-canvas #dark_blue_row *){
    color: #fff !important;
}

#dark_blue_row .panel-heading {
    background: #003356;
    border: 1px solid #003356;
}


#gray_row {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 20px;
    color: #000;
}
#gray_row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #758591;
    z-index: -1;
}
#gray_row p:not(#gm-canvas #gray_row p){
    color: #000 !important;
}

#mycanvas #light_blue_row::before,  #mycanvas #dark_blue_row::before, #mycanvas #gray_row::before {
    z-index: -1;
}


@media (max-width: 767px) {
    #light_blue_row {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

#light_blue_col {
    background-color: #70b0c4;
    padding: 30px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
}
#light_blue_col p:not(#gm-canvas #light_blue_col p){
    color: #000 !important;
}

#dark_blue_col {
    position: relative;
    padding: 30px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
}
#dark_blue_col:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    background: linear-gradient(90deg, rgba(38,72,106,0.60), rgba(38,72,106,0.60)) , url(../images/events-bg-wrap.png) no-repeat;
    background-position: center;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    color: #fff;
    z-index: -1;
}
#dark_blue_col *:not(#gm-canvas #dark_blue_col *){
    color: #fff !important;
}

#gray_col {
    background-color: #758591;
    padding: 30px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
}
#gray_col p:not(#gm-canvas #gray_col p){
    color: #000 !important;
}



/*--------------------------------------------------------
                        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: 'Lato', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #853275;
    border: 1px solid #853275;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'Lato', 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: #26486A;
    border: 1px solid #26486A;
    color: #fff;
    text-decoration: none;
}
.login-form a {
    color: #3A3A3A;
    font-size: 14px;
    font-family: 'Lato', 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: 'Lato', sans-serif;
}
h4#myModalLabel {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #1A1A1A;
    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 {}

    #main-header .social-media-wrap {
        display: none !important;
    }
    .news-item {
    }
}


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


@media (min-width: 768px) and (max-width: 990px) {
    .container {}

    #featured-section-wrap .column {
        width: 50%;
    }
    .news-item {
    }
    .news-image, .news-details {
        width: 50%;
    }


}


@media (max-width: 767px) {
    .container {}

    .events-wrapper, .news-wrapper {
        display: block;
    }
    .news-content {
        padding: 0px 15px;
    }
    .footer-contact-info {
        margin-top: 20px;
    }

}

@media (min-width: 560px) and (max-width: 767px) {
    .news-item {
        min-height: auto;
    }
    .news-image, .news-details {
        width: 50%;
    }
}

@media (max-width: 580px) {


}

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


}

@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) {  


}</pre></body></html>