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


/*
--------------------------------------------------------------------------
 Typography 
--------------------------------------------------------------------------
 */

 :root {
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden;
    --blue: #054376;
    --green: #22B573;
    --purple: #45458C;
    --dark-purple: #26266C;
    --gray: #E9ECE6;
    --text: #4D4D4D;
    --gap: 1rem 30px;
    --header-size: 78px;
}

body {
    color: var(--text);
    font-size: inherit !important;
    font-family: inherit !important;
    overflow: inherit;
}

p {
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: .75em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: bold;
}

h1 {
    font-size: 32px;
}

h1.title {
    color: var(--blue);
    /* Per Michele's request */
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/*  Links -------------------

 */

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

a.button-link,
main input[type="submit"]:not(#mms-main input),
.mobile-login button {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: var(--blue);
    font-size: inherit;
    padding: 0.7em 2ch .8em;
    display: block;
    width: fit-content;
    color: white;
    border-radius: 3px;
    border: none;
    text-align: center;
    line-height: 1;
    transition: background .125s ease-in-out;
    text-shadow: none;
}

.button-link:not(:last-child) {
    margin-bottom: .5em;
}

a.button-link:hover,
a.button-link:focus {
    text-decoration: none;
    background: var(--green);
}

a.button-link+*:not(.button-link) {
    padding-top: 1.5em;
}

*+.button-link {
    margin-top: 1em;
}

li+li.button-link {
    margin-bottom: .75rem;
}


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

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:992px) {
    body {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
    body {
        --side-margin: calc((100vw - 1170px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    width: calc(100vw + 13px);
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    /* padding-left: 15px; */
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--gray);
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)&gt;.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@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;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}


/*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. :not added to prevent styling Google Custom Search tables*/


/* 

Table styles commented out because on ticket #241071 Chris had to change the query string in MMS Look so every page loads #subpage-main whether it is a system page or not

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
    font-size: 16px;
    border-bottom: 1px solid #dee2e6;
    margin-top: 2em;
}

#subpage-main thead {
    font-weight: bold;
}

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

#subpage-main thead th {
    vertical-align: bottom;
    border-top: none;
}

#subpage-main table caption {
    color: currentColor;
    text-align: left;
    font-size: 1.375em;
    font-weight: bold;
    padding: 0;
}

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

@media (max-width: 767px) {
    #subpage-main table {
        font-size: 14px;
    }
    #subpage-main td:first-child,
    #subpage-main th:first-child {
        padding-left: 5px;
    }
    #subpage-main td:last-child,
    #subpage-main th:last-child {
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    #subpage-main td,
    #subpage-main th {
        padding: 5px 2px;
    }
} */

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

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}


/* Feed items */


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}

.carousel-indicators {
    display: flex;
    gap: 3px;
    top: .5rem;
    bottom: unset;
    right: 3rem;
    margin: 0;
    width: fit-content;
    left: unset;
}

.carousel-indicators li {
    margin: 0;
    border: 1px solid var(--blue);
    background: white;
    width: 12px;
    height: 12px;
}

.carousel-indicators li.active {
    background: var(--blue);
    width: 12px;
    height: 12px;
}


/*--end slideshow-defaults---------*/


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


/*  Modals ---------------------------------
    ----------------------------------------
 */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 260px;
    font-size: 16px;
    margin: auto;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 20px;
    opacity: .9;
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*  Login Forms ----------------------------
----------------------------------------
*/

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

body&gt;header.wrapper {
    padding-top: .25rem;
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    --gap: .5rem 15px;
    position: fixed;
    margin-left: var(--side-margin);
    z-index: 100;
}

body&gt;header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: var(--blue);
    z-index: -1;
}

header nav {
    display: flex;
    gap: var(--gap);
}

.secondary-navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem 15px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 990px) {
    body&gt;header.wrapper {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    body&gt;header::before {
        left: 0;
        right: 0;
    }
    .secondary-navigation .searchbox {
        display: none;
    }
    .mobile-menu .searchbox {}
}


/* Desktop menu  */

#nav_menu {
    padding: 1em 0;
    position: relative;
    z-index: 1;
}

#nav_menu&gt;ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    float: none;
    gap: 5px;
}

#nav_menu&gt;ul::before,
#nav_menu&gt;ul::after {
    content: none;
}

.login-item {
    appearance: none;
    border: none;
    background: none;
    color: white;
    position: relative;
}

#nav_menu li {
    position: relative;
}

#nav_menu .donate-item {
    display: none;
}

#nav_menu&gt;ul&gt;li&gt;a {
    transition: color .125s ease-in-out;
    position: relative;
    padding: 5px;
    text-transform: capitalize;
    color: white;
}

#nav_menu&gt;ul&gt;li&gt;a:hover,
#nav_menu&gt;ul&gt;li&gt;a:focus,
#nav_menu&gt;ul&gt;li&gt;button:hover,
#nav_menu&gt;ul&gt;li&gt;button:focus {
    color: var(--green);
}

#nav_menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s color ease-in-out;
    color: var(--text);
}

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover {
    background: transparent;
}

#nav_menu .caret {
    margin-left: .5ch;
}

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    top: calc(100% + 1.5rem);
}

#nav_menu .dropdown-menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    padding: .5em 1ch;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus {
    background: var(--green);
    color: white;
}

#nav_menu .dropdown-menu:not(.men-level-):not(.men-level-0) {
    top: 0;
}


/* Search */

.searchbox {
    width: 180px;
    max-width: 100%;
    position: relative;
    padding: 5px 1ch;
    height: 34px;
    border-radius: 3px;
    overflow: hidden;
}

.searchbox:hover,
.searchbox:focus,
.searchbox:focus-within {
    outline: 1px solid var(--primary);
}

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: white;
}

.search-input:focus {
    outline: none;
}

.search-button {
    color: transparent;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=054376);
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    transition: .125s background ease-in-out;
    top: 0;
    bottom: 0;
    width: 40px;
    right: 0;
    background-color: transparent;
}

.search-button:hover,
.search-button:focus {
    outline: none;
    background-color: var(--green);
    background-image: url(../images/search-new.svg.php?fc=eeeeee);
}

.search-icon {
    width: 1rem;
    position: relative;
    top: -.125rem;
}

header .button-link {
    padding: .5em 2ch .6em;
    margin-bottom: 0;
    background: var(--green);
    border: 1px solid var(--green);
    transition: .125s border ease-in-out;
}

header .button-link:hover,
header .button-link:focus {
    border: 1px solid white;
}

#mobile-menu .searchbox {
    border: 1px solid var(--blue);
    width: 100%;
}


/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: 2px solid currentColor;
    padding: 6px 3px;
    color: white;
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 3px;
    background: transparent;
}

.mobileMenuTrigger:not(.triggerClose):hover,
.mobileMenuTrigger:not(.triggerClose):focus {
    color: var(--green);
    outline: none;
}

.mobileMenuTrigger label {
    display: none;
}

.menu-trigger {
    width: 30px;
}

@media (min-width: 768px) {
    .mobileMenuTrigger:not(.triggerClose) {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 768px) {
    header.wrapper {
        width: 100%;
        font-size: 15px;
    }
    .to-mbia {
        display: none;
    }
}

@media (max-width: 1150px) and (min-width: 768px) {
    header.wrapper {
        font-size: 14px;
    }
    header .searchbox {
        width: 150px;
    }
    header .button-link {
        padding: .5em 1ch .6em;
    }
}

@media (max-width: 990px) and (min-width: 768px) {
    header .searchbox {
        width: 130px;
    }
    #nav_menu&gt;ul {
        gap: 2px;
    }
    .secondary-navigation {
        gap: .5rem 10px;
    }
}


/* Login modal */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    margin-top: 0;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}

@media (max-width: 990px) {
    .header-links li:not(:last-child) {
        display: none;
    }
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    background: white;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
    transition: left .125s ease-in-out;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper .mobile-search-close {
    display: flex;
    justify-content: space-between;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.triggerClose {
    text-align: right;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}

#mobile-menu .login-item button {
    background: var(--green);
    padding: .5em 2ch .6em;
    border-radius: 3px;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 118px - 143px);
    position: relative;
    margin-top: var(--header-size);
}

main:not(#homepage-main) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

main:is(#homepage-main, #subpage-main, #mms-main) .row:last-child.row-background {
    margin-bottom: 0;
}

@media (min-width: 767px) {
    #subpage-main .row,
    #homepage-main .row {
        /*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*/
        margin-bottom: 3.5em;
    }
    div[class^="col"]+.col-md-12 {
        margin-top: 3.5em;
    }
}

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

@media(max-width: 990px) {
    .col-md-6.col-sm-12+.col-sm-12 {
        margin-top: 30px;
    }
}

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

@media (max-width: 767px) {
    #subpage-main {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    #homepage-main .row,
    #subpage-main .row {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    #homepage-main [class*="col-md"]+[class*="col-md"],
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
}


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

#slideshow-row .column {
    padding: 0;
}

#slideshow-row .carousel {
    font-size: 18px;
}

#slideshow-row img {
    width: 100%;
}

#slideshow-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: var(--side-margin);
    bottom: 10vh;
    right: unset;
    top: unset;
    width: 700px;
    max-width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
    padding: .75rem 1rem;
}

#slideshow-row .carousel-caption::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    opacity: .6;
    z-index: -1;
}

#slideshow-row .caption-text {
    font-weight: bold;
    font-size: 28px;
    margin: 0;
}

@media (max-width: 1050px) {
    #slideshow-row .carousel-caption {
        left: .75rem;
        bottom: 0;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    #homepage-main #slideshow-row {
        padding-top: 0;
        padding-bottom: 0;
    }
    #slideshow-row .carousel,
    #slideshow-row .caption-text {
        font-size: 16px;
    }
    #slideshow-row .carousel-caption {
        position: relative;
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
        width: 100%;
        padding: .75rem 2rem;
    }
    #slideshow-row .carousel-caption::before {
        opacity: 1;
    }
}


/*  CTA Row -------------------------------
    ----------------------------------------
 */

#cta-row:not(#mycanvas #cta-row) .column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

#cta-row h2 {
    font-size: 24px;
    text-align: center;
    margin: 0;
}

#cta-row :hover path,
#cta-row :focus path {
    fill: var(--blue);
    /* stroke: transparent; */
    transition: .125s fill ease-in-out, .125s stroke ease-in-out;
}

#cta-row p {
    margin: 0;
}

#cta-row .button-link {
    margin: 0;
    margin-top: auto;
}

#cta-row .button-link::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (min-width: 768px) {
    #cta-row:not(#mycanvas #cta-row) {
        display: flex;
        gap: 1rem 30px;
    }
    #cta-row:not(#mycanvas #cta-row) .column {
        padding-left: 0;
        padding-right: 0;
    }
    #cta-row .button-link {
        width: 100%;
    }
}


/*  Events News Row -------------------------------
    ----------------------------------------
 */

.news-item+*,
.event-item+* {
    margin-top: 1.25rem;
}

.news-item h3,
.event-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-item {
    display: flex;
    gap: 10px;
}

.event-item time {
    line-height: 1.25;
    padding: 5px 10px;
    border-radius: 3px;
    background: var(--green);
    color: white;
    max-height: 50px;
    /* Remove the way a flex stretches to fill horizontal space */
    text-align: center;
}

.news-item time {
    display: none;
}


/*  Members Row -------------------------------
    ----------------------------------------
 */

#members-row:not(#mycanvas #members-row) .column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem 30px;
}

#members-row h2 {
    grid-column: 1/-1;
}

#members-row:not(#mycanvas #members-row) .column *:not(h2) {
    margin: auto;
}


/*  Subpages -------------------------------
    ----------------------------------------
 */


/*  Grid Page Editor workarounds -----------
----------------------------------------
 */


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

footer:not(#homepage-main+footer) {
    margin-top: 3rem;
}

footer {
    position: relative;
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    z-index: -1;
    background: #092A4C;
}

footer * {
    color: white;
}

footer&gt;section {
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer a {
    text-decoration: underline;
}

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

footer .social-list {
    align-self: flex-end;
}

.social-list {
    /* color: white; */
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    position: relative;
    list-style: none;
    gap: 10px;
    padding-top: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.social-list path:not(a:hover path):not(a:focus path) {
    fill: #092A4C;
    transition: .125s fill ease-in-out;
}

.social-list rect:not(a:hover rect):not(a:focus rect) {
    fill: white;
    transition: .125s fill ease-in-out;
}

footer p,
footer a,
footer address {
    margin-bottom: 0;
}

footer section:last-child a {
    display: block;
}

footer section:last-child * {
    text-align: right;
}

@media (max-width: 800px) {
    footer,
    footer section {
        display: block;
    }
    footer&gt;section {
        padding: 1rem 0;
    }
    footer section:last-child * {
        text-align: left;
    }
}

@media (max-width: 767px) {
    footer::before {
        left: 0;
        right: 0;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}</pre></body></html>