<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    --purple: #625e9d;
    --teal: #81cdcb;
    --light-teal: #b3e1e0;
    --pink: #ff1e55;
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 110%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: inherit;
    font-family: inherit;
    color: var(--purple);
}

p {
    margin: 0;
}

p+p {
    margin-top: .75em;
}

@media (max-width: 500px) {
    body {
        overflow-x: hidden;
    }
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 .75em;
    padding: 0;
    text-transform: capitalize;
    font-weight: bold;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}


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

a {
    color: inherit;
    color: var(--pink);
    transition: color .125s ease-in-out;
    text-decoration: none;
}

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

a.button-link {
    text-transform: uppercase;
    display: inline-block;
    margin-top: 2em;
    background: var(--pink);
    color: white;
    text-align: center;
    padding: .8em 2.5ch;
    text-decoration: none;
    line-height: 1;
    border-radius: 1.5em;
    transition: background .125s ease-in-out, color .125s ease-in-out;
    font-weight: bold;
}

@media (min-width: 768px) {
    .button-link {
        font-size: 14px;
    }
}

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

a.button-link:hover,
a.button-link:focus {
    background: var(--purple);
}

main .button-link {
    white-space: nowrap;
}

#mms-main a {
    /* color: var(--pink); */
    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:768px) {
     :root {
        --page-width: 100%;
    }
}

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

@media (min-width:1201px) {
     :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: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
}

.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(--teal);
    background-image: url(../images/teal-bg.png);
    z-index: -1;
}

.row-background *:not(input):not(#mycanvas *) {
    color: white;
}

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

#mission-row::before {
    background-color: none;
    background-image: url('../images/teal-bg.png');
    background-repeat: repeat;
}


/* Add the star icon to all bulleted lists */

#subpage-main ul,
.star-list {
    list-style: none;
    padding-left: 2ch;
}

#subpage-main li,
.star-list li {
    position: relative;
    margin-bottom: 1em;
}

#subpage-main li::before,
.star-list li::before {
    content: '';
    background: url('../images/list-bullet.svg');
    height: .9em;
    width: .9em;
    position: absolute;
    left: -2ch;
    top: .2em;
    display: block;
}


/* Accordion adjustments per #276783 */

.panel-title&gt;a {
    color: var(--purple);
}

.panel+.panel-collapse {
    margin-top: -20px;
    font-size: 16px;
}


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

body,
header,
footer,
#menu-and-search {
    font-family: inherit !important;
    font-size: inherit !important;
    /* Prevent MMS pages with hard-coded fonts from overwriting this  */
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 1em 0;
    align-items: center;
    /* gap: 2ch; */
}

header&gt;a {
    display: block;
    margin-right: 2ch;
}

header img[alt="Impact 100 SRQ"] {
    width: 290px;
}

.header-links {
    padding: 5px 0;
    margin: 0;
    list-style: none;
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header-links li+li {
    margin-left: 1ch;
}

.header-links .button-link {
    margin-top: 0;
}


/* .header-links li:nth-child(2) .button-link {
    background: var(--light-teal);
    color: var(--purple);
} */

.header-links li:nth-child(3) .button-link {
    background: var(--teal);
    color: var(--purple);
}


/* Per ticket #248748 */

.button-link[href="https://mms.impact100srq.org/members/mrenewal.php?org_id=ISRQ"] {
    background: #625e9d;
}

.button-link[href="https://mms.impact100srq.org/members/newmem/new-mem-reg.php?org_id=ISRQ"] {
    background: #9290c5;
}

@media (max-width: 800px) {
    .header-links .button-link {
        text-transform: none;
        padding: 0.5em 1.5ch;
    }
}

@media (max-width: 767px) {
    .member-hide {
        display: none;
    }
}

@media (max-width: 500px) {
    header {
        overflow-x: hidden;
        flex-wrap: wrap;
    }
    .header-links li+li {
        margin-left: 10px;
    }
}


/* Menu and Search  */

#menu-and-search {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* z-index: 102; */
}


/* --- Search ---  */

.searchbox {
    border: 1px solid transparent;
    max-width: 100%;
    position: relative;
    width: 230px;
    height: 2.1em;
    transition: border .125s ease-in-out;
    overflow: hidden;
    border-radius: 1em;
    background: white;
    display: none;
    /* Searchbox removed per #266074 */
}

.searchbox:focus-within {
    border: 1px solid var(--pink);
}

.search-input {
    border: none;
    padding: .5em 2ch;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    background-size: 1rem;
    padding: 0 20px;
}


/* Mobile menu trigger  */

#menu-and-search .mobileMenuTrigger {
    background: none;
    border: none;
    padding: 0;
    color: white;
    transition: color .125s ease-in-out;
    margin-left: 2ch;
    display: contents;
}

#menu-and-search .mobileMenuTrigger:hover,
#menu-and-search .mobileMenuTrigger:focus {
    color: var(--teal);
    outline: none;
}

@media (min-width: 768px) {
    #menu-and-search .mobileMenuTrigger {
        display: none;
    }
}

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

@media (max-width: 767px) {
    #menu-and-search {
        justify-content: flex-end;
        padding-top: 5px;
        padding-bottom: 5px;
        /* gap: 2ch; */
    }
    .searchbox {
        margin-right: 2ch;
    }
}


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

#menu-and-search::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--purple);
    z-index: -1;
}

#nav_menu {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 100%;
    /* Searchbox removed per #266074 */
}

#nav_menu&gt;ul {
    display: flex;
    justify-content: space-between;
    /* Searchbox removed per #266074 */
    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 {
    color: white;
    transition: background .125s ease-in-out, color .125s ease-in-out;
    position: relative;
    padding: .75em 1.5ch;
    background: transparent;
    text-transform: uppercase;
    font-weight: bold;
}

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

#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: var(--teal);
    color: var(--purple);
}

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

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0.5em 0;
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#nav_menu .dropdown-menu a {
    padding: .5em 20px;
    color: var(--purple);
}

@media (max-width: 990px) {
    #nav_menu&gt;ul&gt;li&gt;a {
        text-transform: none;
    }
}

@media (max-width: 767px) {
    header nav {
        display: none;
    }
}


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

.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;
    /* font-family: var(--oswald);
    font-weight: 500;
    color: black;
    font-size: 24px; */
}

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

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

#mobileMenuWrapper .mDropdown a {
    color: var(--light-green);
}

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

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


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

main {
    font-size: 1.1em;
}

#subpage-main,
#mms-main {
    padding-top: 3rem;
    min-height: calc(100vh - 86px - 44px - 208px);
}

main .row:not(#slideshow-row):not(#mms_content .row):not(.no_gap) {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

[action="contact_form_resp.php"] .row:not(#slideshow-row) {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 990px) {
    main:not(#homepage-main) {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    main:not(#mms-main) .column+.column {
        margin-top: 1em;
    }
    main:not(#homepage-main) {
        margin-top: 1rem;
    }
    #homepage-main {
        overflow-x: hidden;
        /* display: flex; */
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}


/* Slideshow row  */

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

#slideshow-row .carousel-caption {
    left: 0;
    right: 0;
    margin: auto;
    padding: 5px 1ch;
    line-height: 1.1;
}

#slideshow-row .caption-text {
    font-size: 30px;
    font-weight: bold;
    max-width: 767px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
}

#slideshow-row .alt-text {
    margin-top: 5px;
}

#slideshow-row .carousel-control {
    display: none;
}

.carousel-indicators {
    bottom: 0;
    padding: 0;
    margin-bottom: 0;
}

@media (min-width: 991px) {
    #slideshow-row .carousel-caption::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: -30px;
        left: 0;
        right: 0;
        background: var(--purple);
        opacity: .5;
        z-index: -1;
        mix-blend-mode: multiply;
    }
}

@media (max-width: 1200px) {
    #slideshow-row .caption-text {
        font-size: 24px;
    }
}

@media (max-width: 990px) {
    #slideshow-row .carousel-caption {
        position: relative;
        top: 0;
        bottom: 0;
        padding: 10px 2rem 1.5rem;
        background: var(--purple);
        text-align: left;
        line-height: 1.2;
    }
    #slideshow-row .caption-text {
        font-size: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    #slideshow-row .alt-text {
        font-size: 1rem;
        margin-top: 5px;
    }
}


/* Welcome and Events row  */

#welcome-and-events-row h1 {
    font-size: 28px;
}

.feed-item {
    border: 1px solid #cccccc;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2ch;
    border-radius: 1.5rem;
    padding: .5rem 2ch;
    align-items: center;
}

.feed-item+.feed-item {
    margin-top: .5rem;
}

#homepage-main time::before {
    display: inline-block;
    top: 3px;
    margin-right: .5ch;
    position: relative;
}

@media (min-width: 768px) {
    #welcome-and-events-row time::before {
        content: url('../images/event-icon.svg');
    }
    #model-and-news-row time::before {
        content: url('../images/news-icon.svg');
    }
}

.feed-item h3 {
    font-size: 1rem;
    font-weight: inherit;
    margin: 0;
    font-family: inherit;
}

@media (max-width: 767px) {
    .feed-item {
        grid-template-columns: 100px 1fr;
    }
}


/* Mission row */

.mission-statement {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    font-size: 25px;
    color: white;
}

@media (min-width: 768px) {
    main .row#mission-row {
        /* Weird selector needed to overwrite :not pseudo selector on .row's  */
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #mission-row&gt;.column {
        text-align: center;
    }
    .mission-statement {
        font-size: 30px;
    }
}


/* Model and News row */

#impact-model div {
    display: grid;
    grid-template-columns: 75px 1fr;
    /* gap: 2ch; */
    align-items: center;
}

#impact-model div+div {
    margin-top: .5rem;
}

#impact-model p {
    margin-left: 2ch;
}

#impact-model p:last-child {
    margin-bottom: 0;
}


/* Grant row */

#grant-row::before {
    background: var(--teal);
}

.grant-grid {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2ch;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.grant-grid&gt;* {
    max-width: 100%;
    padding: 1rem 9ch;
    background: white;
    max-height: 180px;
    border-radius: 1rem;
}

@media (max-width: 910px) {
    .grant-grid&gt;* {
        margin: auto;
    }
}

@media (max-width: 800px) {
    .grant-grid a {
        display: contents;
    }
    .grant-grid img {
        max-width: 100%;
        padding: 1rem 9ch;
        background: white;
        max-height: 180px;
        border-radius: 1rem;
        width: 350px;
        justify-self: center;
    }
}


/* Align the button-links to the bottom of each column  */

@media (min-width: 768px) {
    /* All of the :not selectors are to ensure that the Grid Editor doesn't get styled */
    #welcome-and-events-row:not(#mycanvas .row),
    #model-and-news-row:not(#mycanvas .row) {
        display: flex;
    }
    #welcome-and-events-row:not(#mycanvas .row)&gt;.column,
    #model-and-news-row:not(#mycanvas .row)&gt;.column {
        /* Set column to a relative position so button-links can be absolutely positioned within them */
        position: relative;
        /* Set up a safe area at column bottom for the button-links to exist in  */
        padding-bottom: 4rem;
    }
    #welcome-and-events-row:not(#mycanvas .row) .button-link,
    #model-and-news-row:not(#mycanvas .row) .button-link {
        /* Make sure that the display: flex applied to the row doesn't stretch the width of the button-links */
        /* max-width: fit-content; */
        /* Position button-links at column bottom  */
        /* position: absolute;
        bottom: 0; */
    }
}


/* Homepage Main re-ordering */

@media (max-width: 767px) {
    #homepage-main {
        /* display: flex; */
        /* Remove re-ordering per #237116 message #11 */
        flex-direction: column;
    }
    #homepage-main::before {
        content: none;
    }
    #welcome-and-events-row,
    #model-and-news-row {
        display: contents;
    }
    #slideshow-row {
        order: 0;
        margin-bottom: 2rem;
    }
    #welcome-column {
        order: 2;
        margin-bottom: 2rem;
    }
    #model-column {
        order: 3;
        margin-bottom: 2rem;
    }
    #mission-row {
        order: 4;
        margin-bottom: 2rem;
    }
    #events-column {
        order: 5;
        margin-bottom: 2rem;
    }
    #news-column {
        order: 6;
        margin-bottom: 2rem;
    }
    #grant-row {
        order: 7;
    }
    #stay-in-the-loop-row {
        order: 98;
    }
    #impartiality-row {
        order: 99;
    }
}


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

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

footer&gt;section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
    /* gap: 1rem 30px; */
}

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

@media (max-width: 620px) {
    .footer-contact&gt;div:first-child {
        margin-right: 30px;
        margin-bottom: 1rem;
    }
}

footer a:not(.social-wrapper a) {
    color: white;
    text-decoration: underline;
    transition: color .125s ease-in-out;
}

footer a:not(.social-wrapper a):hover,
footer a:not(.social-wrapper a):focus {
    color: var(--pink);
    text-decoration: underline;
}

.footer-contact {
    padding: 2rem 0;
}

.footer-contact::before {
    background-image: url(../images/teal-bg.png);
}

.footer-contact&gt;div {
    display: flex;
    flex-direction: row;
    /* gap: 2ch; */
}

.footer-contact&gt;div img {
    margin-right: 2ch;
}

.social-wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    /* gap: 1ch; */
}

.social-wrapper li+li {
    margin-left: 1ch;
}

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

.footer-credits {
    padding: 1.5em 0;
    color: white;
}

.footer-credits&gt;div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-credits&gt;div&gt;*+* {
    margin-left: 2ch;
}

.footer-credits img[alt="Impact 100"] {
    margin-top: -6px;
}

.footer-credits svg {
    width: 200px;
    height: 38px;
}

.footer-credits svg * {
    fill: white !important;
}

@media (max-width: 500px) {
    .footer-credits .starburst {
        display: none;
    }
    .footer-credits svg {
        margin-left: -43.8px;
    }
}


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

.fc-event {
    background-color: #625e9d !important;
    border: 1px solid #625e9d !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    color: inherit !important;
}


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


/* Video embeds */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mheader_5_wrapper .event-wrapper .row {
    /* Events have .col/.rows wrapping every line of information on them. Adjustment per #228971 */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}</pre></body></html>