*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/

:root {
    --blue: #249EE9;
    --navy: #2E3B47;
    --red: #B71A25;
    --dark-red: #8E111B;
    --gray: #5D636B;
    --light-gray: #C7CACC;
    --text: #4A4F57;
}


/*I am using css-variables-polyfill.js for custom css property support in IE*/


/*--------------------------------------------------------
	Font Assignments
--------------------------------------------------------*/

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    font-size: 16px;
    overflow-x: hidden;
}

p {}

#subpage-main p:empty {
    display: none;
}


/* #subpage-main br + br { display: none; }  */


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

h1,
h2,
h3,
h4 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-family: 'Rokkitt', serif;
    color: var(--blue);
    line-height: 1em;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 24px;
}

h1.title {}

h1.title:empty {
    display: none;
}


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

#subpage-main p:not(:empty)+h2,
#subpage-main p:not(:empty)+h3,
#subpage-main p:not(:empty)+h4,
#subpage-main ul+h2,
#subpage-main ul+h3,
#subpage-main ul+h4,
#subpage-main table+h2,
#subpage-main table+h3,
#subpage-main table+h4 {
    margin-top: 1.5em;
}

#subpage-main h2+ul,
#subpage-main h3+ul,
#subpage-main h4+ul {
    margin-top: -.75rem;
    /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}


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

a {
    color: inherit;
    text-decoration: underline;
}

a:hover,
a:focus {
    transition: .25s ease-in color;
    color: var(--dark-red);
}

a.button {
    font-size: .9em;
    padding: 0.6em 1.25em;
    border-radius: 1.5em;
    background: var(--red);
    color: white;
    font-weight: 700;
    border: 0.4px solid var(--red);
    line-height: 1;
    display: inline-block;
    transition: .25s ease-in background, .25s ease-out border-color;
    text-align: center;
    /*width: max-content;*/
    text-decoration: none;
    margin-top: 1.25em;
}

a.button:hover,
a.button:focus {
    text-decoration: none;
    background: var(--dark-red);
    border-color: var(--dark-red);
}

a.button+* {
    padding-top: 1.5em;
}


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

#subpage-main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

figcaption {
    font-style: italic;
    font-size: .9em;
    padding-top: 5px;
}

@media (max-width: 767px) {
    figcaption {
        font-size: 1em;
    }
}

@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}

blockquote {
    font-size: inherit;
}


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
}

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

#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}

#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

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

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}


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

header {
    font-size: 16px;
}

@media (max-width: 990px) {
    header .container,
    footer .container,
    #sticky-join .container {
        width: 100%;
    }
    nav .container {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
}

header a {
    color: var(--text);
}

#region-links {
    border-bottom: 1px solid var(--light-gray);
}

#region-links ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1em 5px .5em;
    margin: 0 auto;
    list-style-type: none;
    max-width: 800px;
}

@media (max-width: 850px) {
    #region-links {
        display: none;
    }
}

header>section:nth-of-type(2) {
    padding: 1em 1em 1.25em;
}

@media (max-width: 500px) {
    header>section:nth-of-type(2) {
        padding-left: 0;
        padding-right: 0;
    }
}

header>section:nth-of-type(2) a {
    text-decoration: none;
}

header>section:nth-of-type(2) .col-md-12,
#header-logo a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header-logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-right: 14px;
}

#header-logo .wordmark {
    display: inline-block;
    font-family: 'Rokkitt', serif;
    font-size: 27px;
    max-width: 375px;
    line-height: 1em;
    margin: auto 0;
    height: 100%;
}

@media (max-width: 990px) {
    #header-logo img {
        width: 80px;
    }
    #header-logo .wordmark {
        max-width: 30vw;
    }
}

@media (max-width: 500px) {
    #header-logo .wordmark {
        font-size: 20px;
    }
}

#header-tools {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: calc(100% - 510px);
    list-style: none;
}

@media (max-width: 990px) {
    #header-tools {
        padding: 0;
    }
}

@media (max-width: 850px) {
    #header-tools {
        display: none;
    }
}

#header-tools li:first-of-type {
    width: 160px;
}

@media (max-width: 1200px) {
    #header-tools li:first-of-type {
        flex-basis: 270px;
        margin-bottom: 0.75em;
    }
}

.searchbox {
    position: relative;
    /*width: 160px;*/
    width: 100%;
    height: 32px;
}

.searchbox .search-input {
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 1ch;
    bottom: 0;
    z-index: 1;
    background: transparent;
    /*max-width: 160px;*/
    width: inherit;
}

.searchbox .search-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: none;
    background: none;
    z-index: 2;
    background-color: transparent;
    width: 30px;
    background-image: url('../images/search.svg');
    background-repeat: no-repeat;
    background-position: center;
}

#header-tools>li:nth-of-type(2) {
    padding: 0 1.5ch;
}

.button.member-login {
    background: var(--blue);
    border-color: var(--blue);
    font-size: 14px;
    margin: 0;
}

.button.member-login:hover,
.button.member-login:focus {
    background: #25608A;
    border-color: #25608A;
}

#header-tools>li:last-of-type svg,
footer ul svg {
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    padding: 2px;
}

#header-tools>li:last-of-type path {
    fill: var(--blue);
    transition: .25s ease-in fill;
}

#header-tools>li:last-of-type svg:hover path,
#header-tools>li:last-of-type svg:focus path {
    fill: #25608A;
}

.mobileMenuTrigger {
    display: none;
    cursor: pointer;
}

.mobileMenuTrigger line {
    stroke: currentColor;
    stroke-width: 3px;
    stroke-linecap: round;
    transition: .25s ease-in stroke;
}

.mobileMenuTrigger:hover line,
.mobileMenuTrigger:focus line {
    stroke: var(--dark-red);
}

.mobileMenuTrigger:active line {
    stroke: var(--blue);
}

@media (max-width: 850px) {
    .mobileMenuTrigger {
        display: block;
    }
    #header-logo .wordmark {
        max-width: 50vw;
    }
}


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

header nav {
    background: var(--gray);
    color: white;
}

@media (max-width: 850px) {
    /*Switch to mobile menu*/
    header nav {
        display: none;
    }
}

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

#nav_menu {
    padding-left: 0;
    padding-right: 0;
}

#nav_menu>ul {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#nav_menu li {
    float: none !important;
    width: 100%;
}

#nav_menu>ul>li {
    text-align: center;
}

#nav_menu a {
    font-size: 15px;
    text-decoration: none;
    display: block;
}

#nav_menu a:hover,
#nav_menu a:focus {
    transition: .25s ease-in background, .25s ease-in color;
    background: var(--red);
    color: white;
}

#nav_menu>ul>li>a {
    /*Top level links*/
    color: white;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    #nav_menu>ul>li>a {
        /*Top level links*/
        padding-left: 0;
        padding-right: 0;
    }
}

#nav_menu ul ul {
    /*Dropdown menus*/
    padding: .5em 0 1em;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    /*Overwrite Bootstrap defaults*/
    background: inherit;
    color: inherit;
}


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

#mobileMenuWrapper {
    box-shadow: 1.79px 2.69px 17.92px rgba(0, 0, 0, 0.2);
    z-index: 300;
    position: fixed;
    top: 0px;
    bottom: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: white;
    transition: 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000) left;
}

#mobile-menu {
    overflow-y: auto;
    padding: 15px 15px 15px 10px;
    position: relative;
    list-style: none;
}

#triggerClose {
    position: absolute;
    top: 30px;
    right: 15px;
}

.search-box {
    padding-left: 0.5ch;
    margin-bottom: .5em;
    max-width: 80%;
}

#mobile-menu a:not(.member-login) {
    /*font-weight: 600;*/
    color: currentColor;
    text-decoration: none;
    margin-top: 0.5em;
    margin-bottom: .5em;
    padding-left: 1ch;
    display: inline-block;
}

#mobile-menu .mobile-login {
    padding-left: .5ch;
}

#mobile-menu .member-login {
    margin-top: 0.5em;
    margin-bottom: .5em;
}

#mobile-icons {
    display: flex;
    padding-left: 1.75ch;
    list-style: none;
}

#mobile-icons li {
    margin-right: 1ch;
}

#mobile-icons svg {
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    padding: 2px;
}

#mobile-icons path {
    fill: var(--blue);
}


/*--------------------------------------------------------
					Login Modal
--------------------------------------------------------*/

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

#myModal h2 {
    font-size: 1.4em;
    text-transform: capitalize;
    letter-spacing: -0.4px;
}

#myModal input[name="Username"],
#myModal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
}

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

#myModal input[type="submit"] {
    color: white;
    display: inline-block;
    background: var(--dark-red);
    padding: calc(46px / 2 - 0.7em);
    text-decoration: none;
    z-index: 1;
    text-transform: capitalize;
    position: relative;
    min-width: calc(9vw + 5px);
    text-align: center;
    border: none;
    margin-top: 1em;
    transition: background .125s ease-in;
}

#myModal input[type="submit"]:hover,
#myModal input[type="submit"]:focus {
    background: var(--blue);
}

#myModal input[type="submit"]+* {
    padding-top: 1.5em;
}


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

#subpage-main,
#mms-main {
    margin-top: 60px;
    margin-bottom: 2.5em;
}

#homepage-main,
#subpage-main,
#mms-main {
    min-height: calc(100vh - 220px - 60px - 106px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

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

@media (min-width: 767px) {
    #subpage-main .row {
        margin-bottom: 1em;
    }
}

@media (max-width: 767px) {
    #subpage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
}


/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/

main:not(#mms-main) .row+.row {
    margin-bottom: 3.5em;
}

@media (max-width: 767px) {
    main:not(#mms-main) .row+.row,
    main:not(#mms-main) div[class*="col-md-"]+div[class*="col-md-"] {
        margin-top: 2em;
    }
}


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

#slide-row {
    margin: 0;
}

.carousel img {
    object-fit: cover;
    max-height: 50vh;
    width: 100%;
}

@media (max-width: 450px) {
    .carousel-inner>.item>a>img,
    .carousel-inner>.item>img {
        /*Super specific to overwrite Bootstrap default*/
        height: 50vh;
    }
}

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

.carousel-indicators {
    left: inherit;
    right: 1em;
    margin: 0;
    text-align: right;
}

.carousel-indicators li {
    background: var(--gray);
}

.carousel-indicators li.active {
    background: var(--dark-red);
}

@media (max-width: 850px) {
    .carousel-indicators {
        bottom: inherit;
    }
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #002857;
    background: rgba(0, 0, 0, .6);
    padding: 10px 15px;
    left: inherit;
    bottom: 1em;
    right: 0px;
    top: inherit;
    /*Did you know that IE doesn't support the value of initial? It's true*/
    top: initial;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (max-width: 850px) {
    .carousel-caption {
        bottom: 0;
    }
}

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

p.caption-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1em;
    color: white;
    margin: 0;
    text-transform: capitalize;
}

p.alt-text {
    font-size: 16px;
    color: white;
    margin: 0;
}

.caption-text+.alt-text {
    /*Only add a margin if alt-text is beneath caption text*/
    margin-top: 10px;
}

.caption-text:empty,
.alt-text:empty {
    display: none;
}

@media (max-width: 850px) {
    p.caption-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
    p.caption-text {
        font-size: 20px;
    }
    p.alt-text {
        font-size: 16px;
        line-height: calc(1em + 2px);
    }
    .caption-text+.alt-text {
        /*Only add a margin if alt-text is beneath caption text*/
        margin-top: 6px;
    }
}


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


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

@media(min-width: 767px) {
    #cta-row {
        position: relative;
        z-index: 2;
        padding: 3.5em 0 4em;
    }
    #cta-row::before {
        content: '';
        background: var(--light-gray);
        z-index: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -10000vw;
        right: -10000vw;
        display: block;
        opacity: .2;
    }
    #cta-row h2 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    #cta-row .button {
        margin-left: 50%;
        transform: translateX(-50%);
    }
}


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

#news-and-events h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
}

#news-and-events h3 a:not(:hover):not(focus) {
    color: inherit;
}

.news-item {
    display: flex;
    flex-direction: row;
}

.news-item+.news-item {
    margin-top: 1em;
}

.news-item time {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: .75em 1em;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    min-width: 70px;
    margin-right: 1em;
    height: 75px;
}

.news-item .month {
    display: block;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
}

.news-item .day {
    display: block;
    font-size: 2em;
    line-height: 1;
}

@media (max-width: 767px) {
    .news-item time {
        height: 50px;
        padding: .25em 0.5em;
        min-width: 50px;
    }
    .news-item .day {
        font-size: 1.6em;
    }
}

.news-item section {
    line-height: 1.3em;
}

.event-item:not(:last-of-type) {
    padding-bottom: 1em;
}

.event-item+.event-item {
    border-top: 1px solid var(--light-gray);
    padding-top: 1em;
}

.event-item .date::before {
    content: url('../images/calendar.svg');
    margin-right: .5ch;
}


/*--------------------------------------------------------
					Scripts Row
--------------------------------------------------------*/

#scripts-row {
    display: 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: "›";
}


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

footer {
    background: var(--gray);
}

footer .col-md-12,
#sticky-join .col-md-12 {
    min-height: 5em;
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
}

@media (max-width: 990px) {
    footer .col-md-12,
    #sticky-join .col-md-12 {
        flex-direction: column;
    }
}

footer a,
footer a:hover,
#sticky-join a:not(.button),
#sticky-join a:not(.button):hover,
#sticky-join a:not(.button):focus {
    color: currentColor;
    text-decoration: underline;
}

footer ul,
#sticky-join ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer li,
#sticky-join li {
    display: inline-block;
    margin-left: .5ch;
}

footer li:nth-child(2) {
    margin-left: 1ch;
}

footer ul>li:first-of-type>a {
    position: relative;
    top: -.5em;
}

footer ul>li:not(:first-of-type)>a {
    text-decoration: none;
}

footer ul svg:hover,
footer ul svg:focus {
    background: var(--blue);
    transition: .25s ease-in background;
}


/*--------------------------------------------------------
						Join Us
--------------------------------------------------------*/

#sticky-join {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    background: var(--blue);
    color: white;
    z-index: 200;
}

@media (max-width: 767px) {
    #sticky-join .col-md-12 {
        padding: 5px .5em;
    }
}

#sticky-join span {
    color: white;
    max-width: calc(100% - 320px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 990px) {
    #sticky-join span {
        max-width: 100%;
        margin-bottom: .75em;
    }
}

#sticky-join button {
    display: none;
    border: none;
    background: transparent;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    position: absolute;
    color: inherit;
    right: 1rem;
    padding: 0;
}

#sticky-join button:focus {
    outline: none;
    color: var(-dark-red);
}

@media (max-width: 600px) {
    #sticky-join {
        bottom: calc(-9em - 12px);
        transition: .25s ease-in all;
    }
    #sticky-join span {
        display: block;
    }
    #sticky-join h2 {
        cursor: pointer;
        font-size: 22px;
        transition: .25s ease-in font-size, .25s ease-in margin-bottom;
    }
    #sticky-join button {
        display: block;
        transition: .5s ease-in transform, .25s ease-in font-size;
        transform: rotate(-45deg);
    }
    #sticky-join.reveal {
        padding: 1rem;
        bottom: 0;
    }
    #sticky-join.reveal span {
        margin-bottom: 1.5em;
    }
    #sticky-join.reveal button {
        transform: rotate(90deg);
        font-size: 26px;
    }
    #sticky-join.reveal h2 {
        font-size: 32px;
        margin-bottom: .25em;
    }
    #sticky-join.hide {
        bottom: -200px;
    }
    #sticky-join.no-button button {
        display: none;
    }
}

#sticky-join h2 {
    color: inherit;
    min-width: max-content;
    margin-right: 1ch;
    margin-top: auto;
    margin-bottom: auto;
}

#sticky-join .button {
    background: transparent;
    border: 1px solid currentColor;
    transition: .25s ease-in background;
    margin-top: 0;
}

#sticky-join .button:hover,
#sticky-join .button:focus {
    background: #25608A;
}


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

#adminMenu~.text-center>.nav>.dropdown>a,

/*Member Menu*/

#mycanvas a
/*Grid Page Editor*/

{
    text-decoration: none;
}


/*--------------------------------------------------------
	IE Doesn't Support Custom CSS Properties. That's annoying
--------------------------------------------------------*/


/*...So here are all of the variables spelled out*/

@media screen and (min-width:0\0) {
    body {
        color: #4A4F57;
    }
    h1,
    h2,
    h3,
    h4 {
        color: #249EE9;
    }
    a:hover,
    a:focus {
        color: #8E111B;
    }
    a.button {
        background: #CA0911;
        border: 0.4px solid #CA0911;
    }
    a.button:hover,
    a.button:focus {
        background: #8E111B;
        border-color: #8E111B;
    }
    header a {
        color: #4A4F57;
    }
    #region-links {
        border-bottom: 1px solid #DCE0E2;
    }
    .searchbox .search-input {
        border: 1px solid #DCE0E2;
    }
    .button.member-login {
        background: #249EE9;
        border-color: #249EE9;
    }
    #header-tools>li:last-of-type svg,
    footer ul svg {
        border: 1px solid #DCE0E2;
    }
    #header-tools>li:last-of-type path {
        fill: #249EE9;
    }
    .mobileMenuTrigger:hover line,
    .mobileMenuTrigger:focus line {
        stroke: #8E111B;
    }
    .mobileMenuTrigger:active line {
        stroke: #249EE9;
    }
    nav {
        background: #5D636B;
    }
    #nav_menu a:hover,
    #nav_menu a:focus {
        background: #CA0911;
    }
    #mobile-icons svg {
        border: 1px solid #DCE0E2;
    }
    #mobile-icons path {
        fill: #249EE9;
    }
    #myModal input[type="submit"] {
        background: #8E111B;
    }
    #myModal input[type="submit"]:hover,
    #myModal input[type="submit"]:focus {
        background: #249EE9;
    }
    .carousel-indicators {
        z-index: 500;
    }
    .carousel-indicators li {
        background: #5D636B;
    }
    .carousel-indicators li.active {
        background: #8E111B;
    }
    @media(min-width: 767px) {
        #cta-row::before {
            background: #DCE0E2;
        }
    }
    #news-and-events h3 {
        color: #4A4F57;
    }
    .news-item time {
        background: #249EE9;
    }
    .event-item+.event-item {
        border-top: 1px solid #DCE0E2;
    }
    footer {
        background: #5D636B;
        margin-bottom: 10rem;
    }
    footer ul svg:hover,
    footer ul svg:focus {
        background: #249EE9;
        transition: .25s ease-in background;
    }
    #sticky-join {
        background: #249EE9;
        position: fixed;
        width: 100%;
    }
    #sticky-join button:focus {
        color: #8E111B;
    }
}