<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    --primary: #006600;
    --secondary: #c2d4e8;
    --accent: #ea9860;
    --text: #4c2d34;
    overflow-x: hidden;
    font-size: 18px;
    color: var(--text);
    font-family: 'Lato', sans-serif;
}

body {
    color: inherit;
    font-size: inherit !important;
    font-family: inherit !important;
    /* Properties are !important'd to prevent these styles from being overwriten on MMS pages that have arbitrary values writen for them */
}

@media (max-width: 500px) {
    header,
    main,
    footer {
        overflow-x: hidden;
        /* I'm not exactly sure why this is needed, but removing it will cause Chrome mobile to have a horizontal scrollbar and the sticky header won't stick */
    }
}

p {
    margin-bottom: .75em;
}


/*--------------------------------------------------------
    Headings
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0 0 .75em;
    /* padding: 0 0 .5rem;
    border-bottom: 0.25rem solid currentColor; */
    text-transform: capitalize;
    color: var(--primary);
    font-family: 'Zilla Slab', serif;
}

h1 {
    font-size: 43px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 23px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
}


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

a {
    color: var(--accent);
    transition: filter .125s ease-in-out;
    text-decoration: underline;
}

a:hover:not(nav a):not(.button-link),
a:focus:not(nav a):not(.button-link) {
    filter: brightness(1.1);
}

#mms-main a {
    text-decoration: none;
}

a.button-link,
input[type="submit"],
.mobile-login button {
    background: var(--accent);
    padding: 0.5em 2.2ch;
    display: block;
    color: white;
    position: relative;
    border: none;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

*+.button-link {
    margin-top: .5rem;
}

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

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


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

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

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

@media (min-width:992px) {
     :root {
        --page-width: 970px;
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
     :root {
        --page-width: 1170px;
    }
    .wrapper {
        width: 1170px;
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: unset;
        left: unset;
        right: unset;
        width: unset;
    }
}

.row_background {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.row_background::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--secondary);
    opacity: .1;
}

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


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

header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: .75rem 30px;
    display: flex;
    /* gap: 30px; */
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: white;
    z-index: -1;
}

header .logo {
    max-width: 200px;
}


/* header .logo {
    height: 50px;
    transition: height .125s ease-in-out;
    max-width: calc(100vw - 30px - 43px - 30px);
}

header.scrolled .logo {
    height: 40px;
} */

@media (max-width: 1200px) {
    header {
        padding: .5rem 15px;
    }
}


/* Mobile menu trigger  */

header .mobileMenuTrigger {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    transition: color .125s ease-in-out;
    margin-left: 1ch;
}

header .mobileMenuTrigger:hover,
header .mobileMenuTrigger:focus {
    color: var(--accent);
    outline: none;
}

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


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

nav:not(.navbar) {
    max-width: 50%;
    width: 100%;
}

@media(max-width: 1700px) {
    nav:not(.navbar) {
        max-width: calc(100% - 350px - 30px);
    }
}

@media(max-width: 1250px) {
    header .logo {
        max-width: 300px;
    }
    nav:not(.navbar) {
        max-width: calc(100% - 300px - 15px);
    }
}

#nav_menu {
    position: relative;
    z-index: 1;
    padding: 0;
    /* display: inline-block !important; */
    /* !important needed to overwrite BS default which also includes !important */
}

#nav_menu&gt;ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

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

#nav_menu&gt;ul&gt;li&gt;a,
#nav_menu&gt;ul&gt;li&gt;a:hover,
#nav_menu&gt;ul&gt;li&gt;a:focus {
    color: var(--primary);
    padding: 0 .5ch;
    transition: color .125s ease-in-out;
    /* font-weight: 800;
    opacity: .8; */
    position: relative;
    text-transform: capitalize;
    letter-spacing: initial;
}

#nav_menu&gt;ul&gt;li&gt;a::after {
    content: '';
    bottom: -7px;
    left: 0;
    width: 0;
    height: 5px;
    display: block;
    background: var(--accent);
    transition: width .125s ease-in-out;
}

#nav_menu&gt;ul&gt;li&gt;a:hover::after,
#nav_menu&gt;ul&gt;li&gt;a:focus::after {
    width: 100%;
}

#nav_menu a {
    text-transform: none;
    letter-spacing: 1px;
    padding: 0;
}

#nav_menu a,
#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav&gt;li&gt;a:focus,
#nav_menu .nav&gt;li&gt;a:hover {
    /* Weird selectors needed to overwrite BS defaults */
    text-decoration: none;
    background: none;
    color: var(--text);
    background-color: transparent;
}

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

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 1em;
    min-width: 20ch;
}

#nav_menu .dropdown-menu li+li {
    margin-top: .5rem;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus {
    transition: color .125s ease;
    color: var(--accent);
}

@media (max-width: 990px) {
    #nav_menu {
        display: none !important;
        /* !important needed to overwrite BS default which also includes !important */
    }
}


/* Social media icons */

.social-media {
    padding: 0;
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.social-media li+li {
    margin-left: 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: 20px;
}

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


/*--------------------------------------------------------
    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 a {
    background-color: transparent;
    text-decoration: none;
    color: var(--text);
}

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

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

#triggerClose {
    font-size: 22px;
    cursor: pointer;
    text-align: right;
}

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


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

#subpage-main,
#mms-main {
    padding-top: 3rem;
    min-height: calc(100vh - (84px + 333px));
}

main .row+.row {
    margin-top: 3rem;
}

@media (max-width: 990px) {
    #subpage-main,
    #mms-main {
        padding-top: 2rem;
    }
    main .row+.row {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    #subpage-main,
    #mms-main {
        min-height: calc(100vh - (120px + 52px + 157px)) padding-top: 1rem;
    }
    main [class*="col-"]+[class*="col-"] {
        margin-top: 1rem;
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}


/* Homepage slideshow */

#slide-row .carousel-indicators {
    top: 1rem;
    right: 1rem;
    left: unset;
    bottom: unset;
    text-align: right;
    margin: unset;
    z-index: 1;
}

#slide-row .carousel-indicators li {
    border-color: var(--primary);
    background: white;
}

#slide-row .carousel-indicators li.active {
    background: var(--primary);
}

@media (min-width: 768px) {
    #slide-row img {
        width: 100%;
        max-height: 75vh;
        object-fit: cover;
        object-position: center;
    }
}

#slide-row a:hover,
#slide-row a:focus {
    text-decoration: none;
}

#slide-row .carousel-caption {
    position: absolute;
    z-index: 2;
    color: var(--primary);
    left: 0;
    bottom: 0;
    right: unset;
    top: 0;
    width: 50%;
    text-align: left;
    text-shadow: none;
    margin: auto;
    padding: 0;
    display: flex;
    align-items: center;
    /* Style needed to overwrite BS defaults */
}

#slide-row .caption-wrapper {
    position: relative;
    padding: 1.5em 15px;
    width: calc(40%);
}

#slide-row .caption-wrapper::before {
    backdrop-filter: blur(5px);
    content: '';
    position: absolute;
    background: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: .8;
}

#slide-row .caption-text {
    font-weight: bold;
    line-height: 1.1;
    text-transform: capitalize;
    font-size: 26px;
    margin-bottom: 10px;
}

#slide-row .alt-text {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
}

#slide-row .carousel-control.left,
#slide-row .carousel-control.right,
#slide-row .carousel-control:hover {
    display: none;
}

@media (min-width: 1170px) {
    #slide-row .carousel-caption {
        /* width: 1170px; */
        padding: 0 15px;
    }
}

@media (max-width: 1600px) {
    #slide-row .caption-wrapper {
        width: 380px;
        height: 100%;
    }
}

@media (max-width: 990px) {
    #slide-row .carousel-caption {
        align-items: flex-end;
        width: 100%;
        right: 0;
    }
    #slide-row .caption-wrapper {
        width: 100%;
        padding: 1em 0;
    }
    #slide-row .caption-text {
        font-size: 18px;
        margin-bottom: .5em;
    }
    #slide-row .alt-text {
        font-size: 1rem;
    }
}

@media (max-width: 990px) {
    #slide-row .carousel-caption {
        position: relative;
    }
    #slide-row .carousel-caption::before {
        opacity: 1;
    }
    #slide-row .caption-wrapper::before {
        opacity: 1;
    }
}


/* Mission row  */

#mission-row {
    position: relative;
}

#mission-row::before {
    content: '';
    position: absolute;
    top: -3rem;
    bottom: -3rem;
    left: -666vw;
    right: -666vw;
    display: block;
    opacity: .1;
    background: linear-gradient(90deg, var(--secondary) 50%, white 0);
}

.event-item+.event-item {
    margin-top: 1rem;
}

.event-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: bold;
    border-bottom: none;
    padding: 0;
}

.event-item time {
    display: block;
}

@media (max-width: 990px) {
    #mission-row::before {
        content: none;
    }
    #mission-row&gt;.column:not(#mission-column) {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    #mission-row&gt;.column:not(#mission-column)::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: .1;
        background: var(--secondary);
        z-index: -1;
    }
}

@media (max-width: 767px) {
    #mission-row {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* Mission column  */

#cta-list {
    list-style: none;
    display: flex;
    padding: 0;
}

#cta-list li+li {
    margin-left: 1ch;
}

@media (min-width: 991px) {
    #mission-column {
        font-size: 20px;
        font-weight: bold;
    }
}


/* Banner row  */

#cta-row {
    position: relative;
    padding-top: 4.5rem;
}

@media (max-width: 767px) {
    #cta-row {
        padding-top: 3rem;
    }
}

#cta-row .column:hover {
    cursor: pointer;
}

#cta-row svg {
    color: var(--primary);
    height: 140px;
    width: auto;
    display: block;
    margin: auto;
}

#cta-row .column:hover svg {
    color: var(--secondary);
    transition: color .125s ease-in-out;
}

#cta-row a {
    text-align: center;
    display: block;
    margin: .5rem auto 0;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

#cta-row a:hover,
#cta-row a:focus {
    filter: none;
    color: var(--accent);
}

#cta-row:not(#mycanvas #cta-row) a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Model row  */

#model-row section {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

#model-row section div {
    max-width: 200px;
    text-align: center;
    position: relative;
}

#model-row section div+div::before {
    content: '';
    border-bottom: 4px dotted var(--secondary);
    width: 12ch;
    display: block;
    position: absolute;
    top: 40%;
    left: calc(-50% - 4ch);
}

#model-row img {
    max-height: 100px;
    margin-bottom: 1rem;
}

#model-row .button-link {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    #model-row section div+div::before {
        width: 9ch;
        left: calc(-50% - -1ch);
    }
}

@media (max-width: 990px) {
    #model-row section div+div::before {
        content: none;
    }
}

@media (max-width: 767px) {
    #model-row section {
        justify-content: space-between;
        padding: 2rem 0;
    }
    #model-row section div {
        max-width: 25%;
    }
}

@media (max-width: 500px) {
    #model-row section {
        display: block;
    }
    #model-row section div {
        max-width: 100%;
        margin: 0 auto 1rem;
    }
}


/* News row */

#news-row&gt;.column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    grid-gap: 27px 30px;
}

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

.news-item {
    background: white;
}

.news-item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 270px;
}

.news-item section {
    padding: 1em;
}

.news-item h3 {
    border-bottom: none;
    font-size: 23px;
}

.news-item h3 a {
    color: inherit;
    text-decoration: none;
}
.news-item p:empty {
    display: none;
}

@media (max-width: 900px) {
    #news-row&gt;.column {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}


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

footer {
    color: white;
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
    font-size: inherit;
    /* Font-size included because some pages of the MMS try to override the body's font-size */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--primary);
    z-index: -1;
}

#homepage-main+footer {
    margin-top: 0;
}

footer section {
    max-width: calc((1170px / 2) - 30px);
    position: relative;
}

footer h2 {
    font-size: 1rem;
    /* text-transform: uppercase; */
    color: inherit;
    border-bottom: none;
    margin-bottom: .5em;
    font-weight: normal;
}

footer ul {
    list-style: none;
    padding: 0;
    /* position: absolute;
    right: 0; */
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color .125s ease-in-out;
}

footer a:hover,
footer a:focus {
    text-decoration: none;
    color: var(--accent);
}

footer svg {
    max-width: 100%;
    display: block;
    width: 30px;
    height: 30px;
}

footer address {
    margin-bottom: 0;
}

#connect-section ul {
    display: flex;
}

#connect-section li+li {
    margin-left: 1ch;
}

@media (min-width: 991px) {
    #address-section {
        grid-column: 1/3;
    }
    #national-section {
        grid-column-end: span 3;
    }
}

@media (max-width: 990px) {
    footer {
        margin-top: 2rem;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
    footer&gt;section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    footer {
        margin-top: 1rem;
    }
}


/*--------------------------------------------------------
    UTILITIES
--------------------------------------------------------*/


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

/* custom field text for event registration forms */
.evr-field-info-container.evr-small-text {
    font-size: 16px;
}
.evr-section-container .evr-small-text{
    font-size: 16px;
}</pre></body></html>