<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*	--------------------------------------------------------FONT ASSIGNMENTS
--------------------------------------------------------*/

body {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

p {}


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

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 22px;
}

h1.title {}

h1.title:empty {
    display: none;
}


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


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

a {
    color: #3969b8;
    text-decoration: none;
    -webkit-transition: color .25s, text-decoration .25s;
    transition: color .25s, text-decoration .25s;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #22a178;
}


/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/

img {
    border: 0px;
}


/*--------------------------------------------------------
						Log In Modal
--------------------------------------------------------*/

#myModal {
    width: 260px;
    margin: 0px auto;
    /*background: #474747;*/
    color: #999;
    border: none;
    border-radius: 10px;
}

#myModal .modal-dialog {
    width: 100%;
}

#myModal .modal-header {
    border: none;
}

#myModal a,
#myModal button {
    display: block;
    /*color: #ECAD3C;*/
    text-shadow: none;
    opacity: 1;
    font-weight: normal;
}

#myModal button:focus {
    outline: none;
}

#myModal input {
    margin-bottom: 10px;
    max-width: 100%;
}

#myModal input[type="text"],
#myModal input[type="password"] {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
}

#myModal input[type="text"]:focus,
#myModal input[type="password"]:focus {
    outline: none;
    color: #474747;
    border-color: #bbb;
    border-color: rgba(0, 0, 0, 0.35);
    background-color: rgba(255, 255, 255, 1.0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

#myModal input[type="submit"] {
    padding: 7px 12px 4px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-bottom-color: #a2a2a2;
    border-radius: 2px;
    background-color: #f3f3f3;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1.0), 0 2px 1px rgba(0, 0, 0, 0.05);
    color: #777;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

#myModal input[type="submit"]:hover,
#login-modal input[type="submit"]:focus {
    border-color: #30698F;
    background-color: #5F9FCB;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    color: white;
}


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

header {
    background-color: #22a178;
    background-image: url('../images/header-green.png');
    background-size: cover;
    padding-top: 44px;
    padding-bottom: 44px;
    margin-bottom: 40px;
    font-family: arial, sans-serif;
}

@media (max-width: 767px) {
    header {
        padding-top: 40px;
        padding-bottom: 20px;
        margin-bottom: 24px;
    }
}

header .container {
    position: relative;
}

#logo-column {}

@media (max-width: 767px) {
    #logo-column {
        top: -15px;
    }
}

#logo-column svg.wspa-logo {
    max-width: 100%;
}


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

#search-column {
    text-align: right;
    z-index: 100;
}

#searchbox {
    background: white;
    height: 38px;
    position: relative;
}

@media (max-width: 767px) {
    #searchbox {
        width: calc( 100% - 50px);
    }
}

#searchbox input {
    border: none;
    font-size: 15px;
    height: inherit;
    display: inline-block;
    padding: 10px;
    position: absolute;
    top: 0px;
}

#searchbox #q {
    left: 0px;
    width: calc( 100% - 45px);
}

.search-button {
    background-image: url(../images/search-icon.svg);
    width: 45px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    right: 0px;
}

@media (max-width: 767px) {
    .search-button {
        background-size: 20px;
        background-position-x: 15px;
    }
}

#search-column #searchbox+a {
    position: absolute;
    left: 15px;
    color: white;
    letter-spacing: .25px;
    font-size: 22px;
    top: 62px;
}

@media (max-width: 990px) {
    #search-column #searchbox+a {
        top: 66px;
        width: 50px;
        line-height: 1em;
    }
}

@media (max-width: 767px) {
    #search-column #searchbox+a {
        display: none;
    }
}


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

#search-column .mobileMenuTrigger {
    position: absolute;
    right: 19px;
    top: 60px;
    border: none;
}

@media (max-width: 767px) {
    #search-column .mobileMenuTrigger {
        top: 0px;
    }
}

@media (min-width: 767px) {
    #search-column .mobileMenuTrigger:before {
        content: 'Menu';
        color: white;
        position: absolute;
        right: calc(100% + 10px);
        letter-spacing: .25px;
        font-size: 22px;
    }
}

#search-column .mobileMenuTrigger svg {
    background: white;
}

#search-column .mobileMenuTrigger:focus {
    outline: none;
}

#search-column .mobileMenuTrigger:active svg {
    background: #22a178;
    outline: 1px solid white;
}

#search-column .mobileMenuTrigger path {
    fill: #22a178;
}

#search-column .mobileMenuTrigger:active path {
    fill: white;
}


/*-----------------toggle--------------------*/

nav#mobile-toggle {
    display: inline-block;
    width: 37px;
    height: 37px;
    position: absolute;
    right: 15px;
    bottom: 30px;
    border: 2px solid #002857;
    border-radius: 4px;
    padding: 8px 5px;
    background-color: white;
    box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

nav#mobile-toggle svg * {
    fill: #002857;
}


/*-----------end--toggle---------------------*/

#mobileMenuWrapper {
    -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .30);
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .30);
    max-width: 100%;
}

#mobile-menu&gt;li#triggerClose {
    display: inline;
    float: right;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 27px;
    cursor: pointer;
}

#mobile-menu&gt;li#mobile-logo {
    position: relative;
    left: -15px;
    top: -10px;
}

#mobile-menu&gt;li#mobile-logo&gt;a {
    display: inline;
    max-width: 80%;
}

#mobile-menu&gt;li #q {
    width: 100%;
}

#mobile-menu&gt;li&gt;a {
    width: 174px;
    min-height: 32px;
    margin-bottom: 6px;
    border-radius: 3px;
    background-color: transparent;
    padding-left: 8px;
    padding-top: 10px;
    padding-right: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #5485A3;
    -webkit-transition: color .25s;
    transition: color .25s;
    text-decoration: none;
}


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

main {
    min-height: calc( 100vh - ((168px + 40px) + (237px + 40px)));
    /*calc( height of screen - ( height of header + margin-bottom) + ( height of footer + margin-top))*/
}


/*----------------Welcome Images----------*/

#welcome-image-row {
    margin-bottom: 40px;
}

#welcome-image-row img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    #welcome-image-row {
        margin-bottom: 24px;
    }
}

@media (min-width: 600px) {
    #welcome-image-row img.mobile-image {
        display: none;
    }
}

@media (max-width: 600px) {
    #welcome-image-row img.full-image {
        display: none;
    }
}


/*--------------------------------------------------------
					Index Navigation Row
--------------------------------------------------------*/

#index-navigation-row {
    background-image: url('../images/background-texture.png');
    background-size: cover;
    padding: 35px 15px 0px;
    margin: 0px 0px 40px;
}

@media (max-width: 990px) {
    #index-navigation-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    #index-navigation-row {
        margin-bottom: 24px;
    }
}

@media (max-width: 500px) {
    #index-navigation-row {
        margin-left: -15px;
        margin-right: -15px;
        padding-top: 15px;
    }
}

#index-navigation-row&gt;div {}

@media (max-width: 500px) {
    div#index-navigation-row .col-xs-6 {
        /*This style switches from two columns to one per row in the xs-size when the screen gets small enough*/
        width: 100%;
        padding: 0px;
    }
}

#index-navigation-row&gt;div:not(.gm-tools)&gt;a {
    /*:not(.gm-tools) prevents these styles from being applied to the Grid Page Editor links*/
    background: black;
    display: block;
    text-align: center;
    height: 160px;
    vertical-align: middle;
    margin-bottom: 30px;
    font-weight: bold;
    color: white;
    font-size: 24px;
    line-height: 1.05em;
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*The padding on these links provides some backup positioning for browsers that don't support flexbox*/
}

@media (max-width: 990px) {
    #index-navigation-row&gt;div:not(.gm-tools)&gt;a {
        font-size: 20px;
        padding: 0px;
    }
}

@media (max-width: 767px) {
    #index-navigation-row&gt;div:not(.gm-tools)&gt;a {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    #index-navigation-row&gt;div:last-of-type:not(.gm-tools)&gt;a {
        margin-bottom: 35px;
    }
}

@media (max-width: 570px) {
    #index-navigation-row&gt;div:not(.gm-tools)&gt;a {
        font-size: 20px;
        height: 150px;
    }
}

@media (max-width: 500px) {
    #index-navigation-row&gt;div:not(.gm-tools)&gt;a,
    #index-navigation-row&gt;div:last-of-type:not(.gm-tools)&gt;a {
        /*Selector includes last-of-type to overwrite the 35px margin-bottom specified for @767px above*/
        height: 80px;
        margin-bottom: 15px;
        text-align: left;
        padding: 15px;
    }
}

#index-navigation-row&gt;div:nth-of-type(1)&gt;a,
#index-navigation-row&gt;div:nth-of-type(8)&gt;a {
    background: #22a178;
}

#index-navigation-row&gt;div:nth-of-type(1)&gt;a:hover,
#index-navigation-row&gt;div:nth-of-type(8)&gt;a:hover {
    background: #208963;
}

#index-navigation-row&gt;div:nth-of-type(1)&gt;a:visited,
#index-navigation-row&gt;div:nth-of-type(8)&gt;a:visited {
    background: #1A684A;
}

#index-navigation-row&gt;div:nth-of-type(2)&gt;a,
#index-navigation-row&gt;div:nth-of-type(9)&gt;a {
    background: #3969b8;
}

#index-navigation-row&gt;div:nth-of-type(2)&gt;a:hover,
#index-navigation-row&gt;div:nth-of-type(9)&gt;a:hover {
    background: #2E5793;
}

#index-navigation-row&gt;div:nth-of-type(2)&gt;a:visited,
#index-navigation-row&gt;div:nth-of-type(9)&gt;a:visited {
    background: #193D70;
    color: white;
}

#index-navigation-row&gt;div:nth-of-type(3)&gt;a,
#index-navigation-row&gt;div:nth-of-type(4)&gt;a {
    background: #614E70;
}

#index-navigation-row&gt;div:nth-of-type(3)&gt;a:hover,
#index-navigation-row&gt;div:nth-of-type(4)&gt;a:hover {
    background: #483956;
    color: white;
}

#index-navigation-row&gt;div:nth-of-type(3)&gt;a:visited,
#index-navigation-row&gt;div:nth-of-type(4)&gt;a:visited {
    background: #372944;
    color: white;
}

#index-navigation-row&gt;div:nth-of-type(5)&gt;a {
    background: #BA5A5A;
}

#index-navigation-row&gt;div:nth-of-type(5)&gt;a:hover {
    background: #9B3E3E;
    color: white;
}

#index-navigation-row&gt;div:nth-of-type(5)&gt;a:visited {
    background: #7A2727;
    color: white;
}

#index-navigation-row&gt;div:nth-of-type(6)&gt;a,
#index-navigation-row&gt;div:nth-of-type(7)&gt;a {
    background: #e5c333;
}

#index-navigation-row&gt;div:nth-of-type(6)&gt;a:hover,
#index-navigation-row&gt;div:nth-of-type(7)&gt;a:hover {
    background: #D8AE2B;
}

#index-navigation-row&gt;div:nth-of-type(6)&gt;a:visited,
#index-navigation-row&gt;div:nth-of-type(7)&gt;a:visited {
    background: #CC9211;
}

#index-navigation-row&gt;.gm-tools&gt;a {
    /*Avoids coloring the tools in the Grid Page Editor*/
    background: transparent !important;
}


/*--------------------------------------------------------
					Quick Links Row
--------------------------------------------------------*/

#quick-links-row {
    margin-bottom: 25px;
}

@media (max-width: 990px) {
    #quick-links-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        order: 2;
        margin-left: 0px;
        margin-right: 0px;
    }
    #quick-links-row&gt;.col-xs-4:first-of-type {
        padding-left: 0px;
        padding-right: 15px;
    }
    #quick-links-row&gt;.col-xs-4:last-of-type {
        padding-left: 15px;
        padding-right: 0px;
    }
}

@media (max-width: 500px) {
    #quick-links-row {
        flex-direction: column;
        width: 100%;
    }
    #quick-links-row&gt;.col-xs-4:nth-of-type(1),
    #quick-links-row&gt;.col-xs-4:nth-of-type(2),
    #quick-links-row&gt;.col-xs-4:nth-of-type(3) {
        padding: 0px;
        width: 100%;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}

#quick-links-row img {
    width: 100%;
}

#march-for-science-button {
    /*margin-top: 25px;*/
}

@media (max-width: 990px) {
    #march-for-science-button {
        display: contents;
    }
}

#march-for-science-button:not(.gm-editing) a {
    /*:not psuedo selection keeps from styling Grid Page links*/
    background: #222;
    display: block;
    text-align: center;
    height: 108px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.05em;
    padding: 40px 30px;
    /*The flex styles below will help to center the text vertically, but won't make much of a difference if the browser doesn't support flexbox*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1200px) {
    #march-for-science-button:not(.gm-editing) a {
        height: 90.5px;
    }
}

@media (max-width: 990px) {
    #march-for-science-button:not(.gm-editing) a {
        height: inherit;
        padding: 5px;
        margin-left: 10px;
        margin-right: 10px;
        flex: 1;
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    #march-for-science-button:not(.gm-editing) a {
        width: 100%;
    }
}

@media (max-width: 600px) {
    #march-for-science-button:not(.gm-editing) a {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    #march-for-science-button:not(.gm-editing) a {
        height: 100%;
        padding-top: 15%;
        padding-bottom: 15%;
        margin: 15px auto;
        font-size: 20px;
    }
}

@media (max-width: 470px) {
    #march-for-science-button:not(.gm-editing) a {
        min-height: 100px;
        width: 324px;
        padding: 0px;
        max-width: 100%
    }
}


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

#news-events-row {
    position: relative;
    margin-bottom: 40px;
    font-family: Arial, Helvetica, sans-serif;
    /*For some reason IE loads this text as serif at first without this style*/
}

@media (max-width: 990px) {
    #news-events-row {
        margin-bottom: 0px;
        display: contents;
    }
}

#events-column {
    padding-bottom: 50px;
}

@supports (width: calc( 33.33333333% - 30px)) {
    /*Browsers that don't support calc won't show a background on these columns*/
    #news-column,
    #events-column {
        background: #fffbe9;
        /*padding: 25px 30px;*/
        margin-left: 15px;
        margin-right: 15px;
        width: calc( 33.33333333% - 30px);
    }
    @media (max-width:990px) {
        #news-column,
        #events-column {
            margin: 0px;
            width: inherit;
        }
        #news-column {
            margin-right: 25px;
        }
    }
    @media (max-width: 550px) {
        #news-column,
        #events-column {
            width: 100%;
            margin: 0px;
        }
    }
}

#news-column img,
#events-column img {
    margin: 0px auto 25px;
}

#news-column h3 a,
#events-column h3 a {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
    display: block;
    text-transform: uppercase;
    text-align: left;
    color: #222;
}

@supports (width: calc( 33.33333333% - 30px)) {
    /*Browsers that don't support calc won't show a background on the News and Events columns so the heading will left align*/
    #news-column h3 a,
    #events-column h3 a {
        text-align: center;
    }
}

.news-item,
.event-item {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1em;
}

.news-item a,
.event-item a {
    color: #222;
    font-size: 18px;
}

.news-item .date,
.event-item .date {
    margin-bottom: 5px;
}


/*--------------------------------------------------------
				Quick Links Column
--------------------------------------------------------*/

@supports (display:flex) or (display: -webkit-box) or (display: -moz-box) or (display: -webkit-flex) {
    #quick-links-col:not(.gm-editing) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 0px;
        top: 0px;
        bottom: 0px;
    }
}

@media (max-width: 990px) {
    #quick-links-col:not(.gm-editing) {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        margin: 0px;
        order: 1;
        padding: 0px;
    }
}

@media (max-width: 470px) {
    #quick-links-col:not(.gm-editing) {
        flex-direction: column;
    }
}

#quick-links-col:not(.gm-editing) a,
#quick-links-col:not(.gm-editing) .placeholder {
    display: block;
    padding: 30px;
    background: #222;
    color: white;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 24px;
    text-align: center;
    padding-left: 90px;
    height: 111px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1.1em;
    -webkit-transition: text-shadow .25s;
    /* Safari */
    transition: text-shadow .25s;
}

@media (max-width: 990px) {
    #quick-links-col:not(.gm-editing) a {
        width: calc( 33.33333% - 10px);
        float: left;
        text-align: right;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 20px;
        margin-bottom: 25px;
        height: 74px;
    }
    #quick-links-col:not(.gm-editing) a:hover,
    #quick-links-col:not(.gm-editing) a:focus {
        text-shadow: 3px 3px 3px rgba(0, 0, 0, .4);
        text-decoration: none;
    }
}

@media (max-width: 630px) {
    #quick-links-col:not(.gm-editing) a {
        padding-left: 5px;
        padding-right: 10px;
        text-align: right;
    }
}

@media (max-width: 470px) {
    #quick-links-col:not(.gm-editing) a {
        width: 100%;
        margin-bottom: 15px;
        flex-direction: inherit;
        height: 80px;
    }
}

#quick-links-col a.quick-link-renew {
    background-color: #7bb854;
    background-image: url(../images/member-login-icon-svg.php?bc=255,255,255,.25);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: bottom;
}

#quick-links-col a.quick-link-Join {
    background-color: #3969b8;
    background-image: url(../images/join-icon-svg.php?bc=255,255,255,.25);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: bottom;
}

@media (max-width: 990px) {
    #quick-links-col a.quick-link-Join {
        padding-left: 30px;
    }
}

@supports (width: calc( 33.33333333% - 30px)) {
    /*Taking advantage of browsers that support calc*/
    @media (max-width: 990px) {
        #quick-links-col:not(.gm-editing) a {
            height: 100px;
        }
        #quick-links-col a.quick-link-Join {
            margin-left: 25px;
            margin-right: 25px;
        }
    }
}

#quick-links-col a.quick-link-donate {
    background-color: #614e70;
    background-image: url(../images/donate-icon-svg.php?bc=255,255,255,.25);
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: center;
}

#quick-links-col:not(.gm-editing) .placeholder {
    background: #22a178;
    margin-bottom: 0px;
    max-height: 45px;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media (max-width: 990px) {
    #quick-links-col:not(.gm-editing) .placeholder {
        display: none;
    }
}

@media (max-width: 990px) {
    #quick-links-col a.quick-link-renew {
        background-size: 2.2em;
    }
    #quick-links-col a.quick-link-renew:hover,
    #quick-links-col a.quick-link-renew:focus {
        text-shadow: 3px 3px 3px rgba(0, 0, 0, .25);
        /*Adjusts for lighter background*/
    }
    #quick-links-col a.quick-link-Join {
        text-shadow: 3px 3px 3px #3969b8;
        background-size: 4em;
    }
    #quick-links-col a.quick-link-donate {
        text-shadow: 3px 3px 3px #614e70;
        background-size: 1.5em;
    }
}

@media (max-width: 630px) {
    #quick-links-col a.quick-link-renew {
        background-image: url(../images/member-login-icon-svg.php?bc=255,255,255,.25);
    }
    #quick-links-col a.quick-link-Join {
        background-image: url(../images/join-icon-svg.php?bc=255,255,255,.25);
    }
    #quick-links-col a.quick-link-donate {
        background-image: url(../images/donate-icon-svg.php?bc=255,255,255,.25);
        margin-bottom: 15px;
    }
}

@media (max-width: 470px) {
    #quick-links-col:not(.gm-editing) a.quick-link-Join {
        margin-left: 0px;
        margin-right: 0px;
    }
    #quick-links-row img {
        max-height: 80px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        min-height: 100px;
    }
}


/*--------------------------------------------------------
			Reorganizing Quick Links
--------------------------------------------------------*/

@media (max-width: 990px) {
    #rearrangement-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    #news-events-wrapper {
        order: 3;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        align-items: stretch;
        width: 100%;
    }
}

@media (max-width: 500px) {
    #news-events-wrapper {
        flex-direction: column;
    }
    #news-column {
        margin-bottom: 15px;
    }
}


/*--------------------------------------------------------
				About Accordian
--------------------------------------------------------*/

.accrodian-arrow {
    display: none;
}

@media (max-width: 767px) {
    #about-accordian-row .col-md-12 {
        padding: 0px;
    }
}

#about-accordion {
    background: #afd8c7;
    border-top: 7px solid #afd8c7;
    border-bottom: 7px solid #afd8c7;
    font-family: Arial, Helvetica, sans-serif;
    /*For some reason IE loads this text as serif at first without this style*/
    margin-bottom: 40px;
}

@media (max-width: 990px) {
    #about-accordion {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    #about-accordion {
        margin-bottom: 24px;
    }
}

#about-accordion .panel-default {
    border: none;
}

#about-accordion .panel-default&gt;.panel-heading,
#about-accordion .panel-body {
    color: #222;
    background-color: #ddf2e9;
    border: none;
}

#about-accordion .panel-body {
    padding: 0px 35px 30px;
}

#about-accordion .panel-title a {
    text-transform: uppercase;
    font-size: 30px;
}

#about-accordion .panel-title a:before {
    content: '\203A';
    -ms-transition: -ms-transform .25s, top .25s;
    -webkit-transition: -web-kit-transform .25s, top .25s;
    transition: transform .25s, top .25s;
    display: inline-block;
    position: relative;
    top: -4px;
    padding-right: 5px;
}

#about-accordion .panel-title a.collapsed:before {
    -ms-transform: rotate(90deg);
    -web-kit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0px;
    top: 5px;
    margin-right: 10px;
}

.panel-title a:hover,
.panel-title a:focus {
    text-decoration: none;
    color: inherit;
}


/*--------------------------------------------------------
				Sponsors Row
--------------------------------------------------------*/

#sponsors-row {
    padding: 25px 15px;
    background: #fffbe9;
    margin: 0px;
}

@media (max-width: 990px) {
    #sponsors-row {
        padding-bottom: 0px;
    }
}

@media (max-width: 767px) {
    #sponsors-row {
        margin: 0px -15px -30px;
        /*-30px margin-bottom removes the spaces added by the footer's margin-top on the homepage*/
        padding-left: 0px;
        padding-right: 0px;
    }
}

#sponsor-ad-1 img,
#sponsor-ad-2 img {
    margin-bottom: 25px;
}

@media (max-width: 990px) {
    #sponsors-row img {
        margin: 0px auto 25px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    #sponsors-row img {
        margin-bottom: 24px;
    }
}

@media (max-width: 500px) {
    #sponsors-row img {
        margin-bottom: 15px;
    }
}

@media (max-width: 450px) {
    #sponsors-row .col-xs-6 {
        width: 100%;
        float: none;
    }
}


/*--------------------------------------------------------
				CSS Styles for Index Grid Page Only
--------------------------------------------------------*/

#index-navigation-row .gm-content a,
#march-for-science-button.gm-editing .gm-content a,
#quick-links-col .gm-content a,
#sponsors-row .gm-content a {
    /*These styles only affect the Grid Page Editor*/
    background-image: none;
    color: #222;
    display: block;
    margin-bottom: 10px;
    height: 115px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    padding-top: 30px;
    line-height: 1.1em;
}

#index-navigation-row .gm-content a:hover,
#march-for-science-button.gm-editing .gm-content a:hover,
#quick-links-col .gm-content a:hover {
    text-decoration: none;
}


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


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

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

.carousel-control {}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #002857;
    background: rgba(0, 0, 0, .6);
    padding: 10px 15px;
    left: initial;
    bottom: 0px;
    right: 0px;
    top: initial;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (max-width: 600px) {
    .carousel-caption {
        padding: 0px 10px;
    }
}

.carousel-caption p.caption-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
    display: block;
    color: white;
    margin-bottom: 10px;
}

.carousel-caption p.alt-text {
    font-size: 16px;
    font-family: serif;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
}


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


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

#subpage-footer-ads {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

#subpage-footer-ads img {
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 30px;
}

@supports (grid-area:auto) {
    #subpage-footer-ads .col-md-12 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #subpage-footer-ads .col-md-12 img {
        margin-right: unset;
        align-self: center;
    }
    @media (max-width: 550px) {
        #subpage-footer-ads .col-md-12 {
            display: block;
        }
        #subpage-footer-ads .col-md-12 img {
            display: block;
            width: 420px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }
}

#subpage-footer-ads br {
    display: none;
}

footer {
    background-color: #614e70;
    background-image: url('../images/purplefooter.png');
    background-size: cover;
    padding-top: 35px;
    padding-bottom: 35px;
    margin-top: 40px;
    color: white;
    font-size: 15px;
    font-family: arial, sans-serif;
}

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

footer p {
    margin-bottom: 0px;
}

footer a:hover,
footer a:focus {
    color: #9eb18f;
}

footer a {
    text-decoration: underline;
    color: white;
}

.footer-contact {
    margin-bottom: 20px;
    display: block;
}

.footer-contact address {
    margin-bottom: 0px;
}

#footer-navigation-column ul {
    padding-left: 0px;
}

#footer-navigation-column ul {
    -webkit-column-width: 150px;
    -moz-column-width: 150px;
    column-width: 150px;
    /*Sets up multiple columns of text for browsers that don't support CSS Grid and @supports (IE)*/
}

@supports (grid-area:auto) {
    #footer-navigation-column ul {
        -webkit-column-width: auto;
        -moz-column-width: auto;
        column-width: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    @media (max-width: 990px) {
        #footer-navigation-column ul {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }
    @media (max-width: 767px) {
        #footer-navigation-column ul {
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }
    }
    @media (max-width: 575px) {
        #footer-navigation-column ul {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }
    @media (max-width: 450px) {
        #footer-navigation-column ul {
            grid-template-columns: 1fr 1fr;
        }
    }
}

#footer-navigation-column li {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    line-height: .75em;
}

@supports (grid-area:auto) {
    @media (max-width: 990px) {
        #footer-navigation-column li {
            text-align: right;
        }
    }
    @media (max-width: 767px) {
        #footer-navigation-column li {
            text-align: left;
        }
    }
}

#footer-navigation-column a {
    text-decoration: none;
}

@media (max-width: 767px) {
    #footer-navigation-column a {
        text-decoration: underline;
    }
}

#footer-navigation-column a:hover,
#footer-navigation-column a:focus {
    text-decoration: underline;
}


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

#joinSession&gt;span {
    background-color: #000000 !important;
    color: #ffffff !important;
}</pre></body></html>