<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*: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*/


/*--------------------------------------------------------
    FONT ASSIGNMENTS
--------------------------------------------------------*/

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #2a2e38;
}

p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #2a2e38;
}

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

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


/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/


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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222223;
    margin: 0px;
    padding: 0px;
    padding-bottom: 18px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 36px;
    color: #222223;
}

h2 {
    font-size: 28px;
    color: #222223;
}

h3 {
    font-size: 22px;
    color: #222223;
}

h4 {
    font-size: 20px;
}

h1.title {
    margin-top: 15px;
}

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

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

a.button {}

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

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

#main-header {
    padding: 20px 0px 35px;
}

@media (max-width: 767px) {
    #main-header {
        padding: 10px 0px 15px;
    }
}

@media (max-width: 323px) {
    #main-header {
        padding: 0px 0px 35px;
    }
}

#logo-wrap a {
    text-decoration: none;
}

.logo-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    z-index: 199;
    padding-top: 0px;
    position: absolute;
}

@media (min-width: 768px) and (max-width: 990px) {
    .logo-wrap {
        margin-top: -45px;
    }
}

@media (min-width: 360px) and (max-width: 767px) {
    .logo-wrap {
        margin-top: -35px;
    }
}

@media (max-width: 767px) {
    .logo-wrap {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .logo-wrap {
        margin-right: 10px;
    }
}

@media (max-width: 380px) {
    .logo-wrap {
        margin-right: 5px;
    }
}

.logo-wrap svg {
    max-width: 100%;
    width: 170px;
    height: 206px;
}

@media (max-width: 480px) {
    .logo-wrap svg {
        max-width: 100%;
        width: 120px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .logo-wrap svg {
        max-width: 100%;
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .logo-wrap svg {
        max-width: 100%;
        width: 170px;
        height: 170px;
    }
}

.logo-txt {
    display: inline-block;
    vertical-align: text-top;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 19px;
    color: #323233;
    line-height: 22px;
    width: 50%;
}

@media (min-width: 768px) and (max-width: 990px) {
    .logo-txt {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .logo-txt {
        width: 100%;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-txt {
        font-size: 16px;
    }
}

@media (max-width: 395px) {
    .logo-txt {
        font-size: 13px;
        line-height: 20px;
    }
}

.logo-txt span.blue-text {
    color: #232d69;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 19px;
}

.logo-txt span.small-text {
    font-size: 15px;
    font-weight: 400;
    color: #4a4f57;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1px;
}

#right-side-wrap {
    text-align: right;
    margin-top: 15px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #right-side-wrap {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    #right-side-wrap {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    #right-side-wrap {
        margin-top: 50px;
    }
}


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

#search-login-wrap {
    display: inline-block;
}

#search-input {
    max-width: 365px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    color: #a2a5aa;
}

@media (max-width: 380px) {
    #search-input {
        max-width: 180px;
    }
}

.search-main-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.search-input {
    background: transparent;
    border: 2px solid #fff;
}

#search-input ::-webkit-input-placeholder {
    color: #a2a5aa;
}

#search-input :-moz-placeholder {
    /* Firefox 18- */
    color: #a2a5aa;
}

#search-input ::-moz-placeholder {
    /* Firefox 19+ */
    color: #a2a5aa;
}

#search-input :-ms-input-placeholder {
    color: #a2a5aa;
}

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 37px;
    color: #a2a5aa;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 10px;
}

#search-input button {
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 2px 10px 0px;
    height: 37px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group.search-input-wrap {
    border: 1px solid #c7d1e5;
    background: #fff;
    border-radius: 0px;
    width: 365px;
}

.search-icon-input {
    display: inline-block;
    vertical-align: middle;
    border-right: 1px solid #d6ddea;
    padding-right: 10px;
}

.search-icon-input {
    display: inline-table;
    vertical-align: middle;
    border-right: 1px solid #d6ddea;
    padding-right: 10px;
}

.search-icon-input::before {
    content: url(../images/search-icon.png);
    top: 2px;
    position: relative;
}

.inside-search-input {
    vertical-align: middle;
    display: inline-table;
    width: 90%;
}

.search-button {
    background: #1b4c7b;
    color: #fff !important;
    padding: 0px 17px !important;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 5px;
    padding-left: 0px;
    width: 260px;
}

li.mobile-search-wrap a {
    border-bottom: 0px !important;
    padding-left: 0px !important;
}

li.mobile-search-wrap a:hover {
    background: transparent !important;
}

li.mobile-search-wrap .input-group.search-input-wrap {
    border: 2px solid #0b729b;
    background: #fff;
    width: 265px;
}

li.mobile-search-wrap .search-icon-input {
    padding-right: 10px;
}

li.mobile-search-wrap .search-icon-input::before {
    left: 4px;
}


/*li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}*/

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 37px;
    color: #a2a5aa;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 15px;
    border-radius: 0px !important;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #4a4f57;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #4a4f57;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #4a4f57;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #4a4f57;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 0px 10px;
    height: 31px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}

.mobile-search-wrap .inside-search-input {
    width: 88%;
}

.join-renew-login-wrap {
    margin-top: 22px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .join-renew-login-wrap {
        display: inline-block;
        margin-top: 25px;
        margin-right: 20px;
    }
}

#join-wrap {
    display: inline-block;
    vertical-align: middle;
}

#join-wrap a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    background: #7f9b0b;
    border: 1px solid #7f9b0b;
    padding: 7.5px 20px;
}


/* Mobile Join */

li.mobile-join-wrap {
    margin-top: 15px;
}

li.mobile-join-wrap a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    background: #7f9b0b !important;
    border: 1px solid #7f9b0b;
    padding: 9px 20px !important;
    text-align: center;
    width: 70px !important;
    border-radius: 0px !important;
}


/* Login */

.login-mobile-menu-wrap {
    float: right;
    margin-top: 7px;
}

.login-wrap, .forum-wrap {
    display: inline-block;
    vertical-align: middle;
}

.login-wrap a {
    background: #05385b;
    color: #fff;
    padding: 9px 18px;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.login-wrap a:hover,
.login-wrap a:focus {
    background: #2b73ad;
}
#mobileMenuWrapper #mobile-menu .forum-wrap {
    margin-top: 20px;
    margin-bottom: 10px;
}
#mobileMenuWrapper #mobile-menu li.mobile-join-wrap {
    border-top: 0px;
}
.forum-wrap a, #mobileMenuWrapper #mobile-menu .forum-wrap a {
    background: red;
    color: #fff;
    padding: 9px 18px;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
.forum-wrap a:hover,
.forum-wrap a:focus {
    background: #2b73ad;
}



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


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

main {
    min-height: calc(100vh - 146px - 200px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

main#subpage-main {
    top: 100px;
    margin-bottom: 100px;
}

main#mms-main {
    margin-top: 100px;
}

#subpage-main #mms-main {
    margin-bottom: 2.5em;
}

@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*/


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

.slideshow-wrap {
    margin-bottom: 50px;
    position: relative;
}

.slideshow-wrap .container {
    width: 100%;
}

.slideshow-wrap img {
    width: 100%;
}

.slideshow-wrap [class*="col-"] {
    padding: 0;
}

#slide-row {
    margin-bottom: 10px;
}

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

.carousel-control {
    margin: auto 0px;
}

.carousel-control.left {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Nunito Sans', sans-serif;
    background: rgba(27, 76, 123, 0.9);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 0px;
    margin-left: 0px;
}

.carousel-control.right {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Nunito Sans', sans-serif;
    background: rgba(27, 76, 123, 0.9);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 0px;
    margin-right: 0px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-control.left,
    .carousel-control.right {
        bottom: 5%;
    }
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {
        height: 38px;
        width: 38px;
        bottom: 50%;
    }
}

.carousel-control img {
    width: 15px;
    height: 23px;
    margin-top: 13px;
}

@media (max-width: 767px) {
    .carousel-control img {
        margin-top: 5px;
    }
}

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(16, 69, 112, .8);
    padding: 15px 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: inherit;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-caption {
        position: relative;
        width: 100%;
        background: #104570;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        position: relative;
        width: 100%;
        background: #104570;
    }
}

.carousel-caption p.caption-text {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 32px;
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
}

.carousel-caption p.alt-text {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    color: #ffffff;
    margin-bottom: 25px;
}

.carousel-indicators {
    display: none;
}

#slideshow-inside-wrap .carousel-indicators {
    display: block;
    bottom: 15px;
    text-align: left;
    z-index: 102;
    width: 100%;
    max-width: 1170px;
    margin: auto;
    left: 0;
    right: 0;
    padding-left: 7px;
}

#slideshow-inside-wrap .carousel-indicators li {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}

#slideshow-inside-wrap .carousel-indicators li.active {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #fcb424;
    border: 1px solid #fcb424;
    border-radius: 15px;
}


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


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


/*--------------------------------------------------------
                    Index / Home Page
--------------------------------------------------------*/

.view-btn-wrap {
    margin-top: 35px;
}

.view-btn-wrap a {
    background: #1b4c7b;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
}

.view-btn-wrap a:after {
    content: url(../images/arrow-white-icon.png);
    width: 22px;
    height: 10px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 1px;
}


/* Welcome Section */

#welcome-section-wrap {
    margin-bottom: 45px;
}


/* News Section */

#news-section-wrap {
    margin-bottom: 65px;
}

#news-section-wrap h2 {
    padding-bottom: 25px;
}

.news-outside-wrap {
    background: #f2f4f7;
    padding: 50px 0px 0px;
    margin-bottom: 30px;
}

.news-details-inside-wrap {
    padding: 20px 15px 14px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .news-details-inside-wrap {
        padding: 15px 10px 20px;
    }
}

.news-image-author-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.news-image {
    margin-bottom: 10px;
}

.news-image img {
    max-width: 100%;
    width: 100%;
}

.news-author {
    font-size: 15px;
    color: #55585b;
}

.news-author span {
    color: #617005;
    text-decoration: underline;
    text-transform: capitalize;
}

.news-content {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 165px);
    width: -webkit-calc(100% - 165px);
    width: -moz-calc(100% - 165px);
    position: relative;
    padding: 0px;
    top: -3px;
}

@media (max-width: 480px) {
    .news-content {
        width: 100%;
        margin-top: 15px;
    }
}

.news-item {
    background: #ffffff;
    border: 1px solid #c7d1e5;
    border-radius: 1px;
    margin-bottom: 20px;
}

h3.news-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #26292d;
    padding-bottom: 5px;
    font-family: 'Nunito Sans', sans-serif;
}

a.news-title-link {
    font-family: 'Nunito Sans', sans-serif;
    color: #26292d;
    font-size: 20px;
    font-weight: 600;
}

a.news-title-link:hover {
    color: #617005;
}

.news-date-article-wrap {
    margin-top: 30px;
}

.news-date {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .news-date {
        float: left;
        width: 100%;
    }
}

.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
}

.news-date span {
    display: inline-block;
    vertical-align: sub;
    color: #55585b;
    font-size: 15px;
}

.news-blurb {
    font-size: 16px;
    color: #323233;
}

#news-section-wrap .red-btn-wrap a {
    padding: 7px 21px;
    font-size: 16px;
}

.news-btn {
    margin-top: 0px;
    display: inline-block;
    vertical-align: middle;
    float: right;
}

@media (min-width: 768px) and (max-width: 990px) {
    .news-btn {
        margin-top: 10px;
        float: left;
    }
}

@media (max-width: 480px) {
    .news-btn {
        margin-top: 10px;
        float: left;
        width: 100%;
    }
}

.news-btn a {
    color: #2a2e38;
    text-decoration: none;
}

.news-btn a span {
    font-size: 15px;
    font-weight: 600;
    color: #2a2e38;
}

.news-btn a:hover,
.news-btn a:hover span,
.news-btn span:hover {
    color: #617005;
}

.news-btn a:after {
    /* content: url(../images/arrow-icon.png);*/
    width: 33px;
    height: 13px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 4px;
}

.news-btn img {
    display: inline-block;
    padding-right: 10px;
}

#news-section-wrap .blue-btn-wrap {
    margin-top: 30px;
}


/* Upcoming Events */

#events-resources-section-wrap {
    margin-bottom: 70px;
    margin-top: 12px;
}

.event-content {
    padding: 12px 0px;
    border-bottom: 1px solid #dee0e2;
    margin-bottom: 10px;
}

#events-section-wrap .event-item:nth-child(2) .event-content {
    padding-top: 0px;
}

#events-section-wrap .event-item:nth-child(4) .event-content {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.events-out-wrap .event-item:first-child .event-content {
    padding-top: 0px;
}

.events-out-wrap .event-item:last-child .event-content {
    border-bottom: 0px;
}

.event-img-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 105px);
    width: -webkit-calc(100% - 105px);
    width: -moz-calc(100% - 105px);
    position: relative;
    padding: 0px;
    top: -3px;
}

.event-date {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 3px 0px;
    background: #7f8da0;
    text-align: center;
    width: 142px;
    margin-top: 3px;
    margin-bottom: 8px;
}

.event-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.event-date span {
    display: inline-block;
    vertical-align: middle;
}

h3.event-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    padding-top: 2px;
    padding-bottom: 5px;
}

a.ev-title-link {
    font-size: 18px;
    font-weight: 600;
    color: #26292d;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: underline;
}

a.ev-title-link:hover {
    color: #617005;
}

.event-description {
    padding-top: 1px;
    color: #2a2e38;
}

.events-btn {
    margin-top: 6px;
}

.events-btn a {
    color: #2a2e38;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Be Vietnam', sans-serif;
}

.events-btn a:hover {
    color: #617005;
    text-decoration: underline;
}

.events-btn a:after {
    content: url(../images/arrow-green-icon.png);
    width: 33px;
    height: 12px;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    top: 4px;
}

#job-ads-connect-wrap {
    margin-top: 75px;
    margin-bottom: 60px;
}


/*Recent Jobs Feed */

.jobs-item {
    background: #fff;
    border: 1px solid #c7d1e5;
    border-radius: 1px;
    padding: 10px 0px;
    margin-bottom: 15px;
}

h4.jobs-title {
    color: #1b4c7b;
    padding-bottom: 8px;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

a.jobs-title-link {
    color: #1b4c7b;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    padding: 0px 10px;
}

.jobs-type {
    background: #247fbc;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px 3px;
    margin-bottom: 7px;
}

.jobs-type.job-type-temp,
.jobs-type.job-type-contract {
    background: #247fbc;
}

.jobs-type.job-type-part,
.jobs-type.job-type-intern {
    background: #779109;
}

.jobs-type.job-type-full,
.jobs-type.job-type-grad {
    background: #edad39;
}

.jobs-city,
.jobs-date {
    display: inline-block;
    vertical-align: middle;
    width: 49.333%;
    padding: 0px 10px;
}

.jobs-city img,
.jobs-date img {
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
}

.jobs-city span,
.jobs-date span,
.jobs-address span {
    font-size: 14px;
}

.jobs-address {
    padding: 0px 10px;
    margin-top: 10px;
}

.jobs-address img {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}

#ads-section-wrap h4 {
    font-size: 16px;
    color: #26292d;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}


/* Connect With Us */

#connect-section-wrap input.form-control {
    color: #2a2e38;
    border: 1px solid #c7d1e5;
    border-radius: 1px;
    padding: 17px 10px;
    font-size: 16px;
}

#connect-section-wrap ::-webkit-input-placeholder {
    color: #2a2e38;
}

#connect-section-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #2a2e38;
}

#connect-section-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #2a2e38;
}

#connect-section-wrap :-ms-input-placeholder {
    color: #2a2e38;
}

#connect-section-wrap input.btn.btn-default {
    background: #1b4c7b;
    color: #fff;
    padding: 10px 50px 10px 26px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0px;
}

#connect-section-wrap input.btn.btn-default:after {
    content: url(../images/arrow-white-icon.png);
    width: 22px;
    height: 10px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 1px;
}

span.icon-input-btn {
    display: inline-block;
    position: relative;
}

span.icon-arrow-btn {
    display: inline-block;
    position: absolute;
    right: 0.95em;
    top: 35%;
    content: url(../images/arrow-white-icon.png);
    width: 22px;
    height: 10px;
}


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


/* Index - Maps */

.body-maps {
    background: url(../images/border-map.png) repeat;
    padding: 0px;
    background-repeat: repeat;
    min-height: 100vh;
}

@media (min-width: 1200px) {
    .body-maps .container {
        width: 1170px;
    }
}

.map-logo-wrap {
    margin-left: -5px;
    margin-top: -5px;
    float: left;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .map-logo-wrap {
        float: left;
        width: 17%;
    }
    .index-map-wrap {
        float: left;
        width: 83%;
    }
}

svg#map-main-logo {
    width: 167px;
    height: 215px;
}

svg#map-mobile-logo {
    width: 94px;
    height: 98px;
}

.mobile-logo-btn-wrap {
    margin-top: 35px;
}

.mobile-logo-btn-wrap a {
    background: #1b4c7b;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
}

.mobile-logo-btn-wrap a:after {
    content: url(../images/map-arrow-icon.png);
    width: 32px;
    height: 12px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 1px;
}

.mobile-map-logo-wrap {
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.mobile-map-container {
    max-width: 300px;
    margin: 150px auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    position: relative;
    width: auto;
}

.mobile-map-content {
    position: relative;
    background: rgba(34, 46, 63, 0.9);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    padding: 50px 0px;
}

.mobile-logo-wrap img {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.mobile-logo-txt {
    background: #222e3f;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    padding: 5px 0px;
}

.mobile-logo-btn-wrap {
    margin: 0 auto;
    text-align: center;
}

svg#index-maps g#col-md-12 path#ontario-map {
    fill: #c7d1e5;
}

svg#index-maps g#col-md-12 .map-loc {
    fill: #1b4c7b;
}

svg#index-maps g#col-md-12 #map-txt-1 {
    fill: #747f93;
}

svg#index-maps g#col-md-12 #map-txt-2 {
    stroke: #747f93;
}

svg#index-maps g#col-md-12 #map-txt-3 {
    fill: #fff;
}

svg#index-maps g#col-md-12 .cls-36 {
    fill: #fff;
}

svg#index-maps g#col-md-12 a {
    text-decoration: none;
}

svg#index-maps g#col-md-12 a:hover path#ontario-map,
svg#index-maps g#col-md-12 a:hover path#manitoba-map,
svg#index-maps g#col-md-12 a:hover path#alberta-map,
svg#index-maps g#col-md-12 a:hover path#saskatchewan-map,
svg#index-maps g#col-md-12 a:hover path#britishcolumbia-map,
svg#index-maps g#col-md-12 a:hover path#yukon-map,
svg#index-maps g#col-md-12 a:hover path#nunavut-map,
svg#index-maps g#col-md-12 a:hover path#northwestterritories-map,
svg#index-maps g#col-md-12 a:hover path#quebec-map,
svg#index-maps g#col-md-12 a:hover path#newfoundlandandlabrador-map,
svg#index-maps g#col-md-12 a:hover path#princeedwardisland-map,
svg#index-maps g#col-md-12 a:hover path#novascotia-map,
svg#index-maps g#col-md-12 a:hover path#newbrunswick-map {
    fill: #1b4c7b;
}

svg#index-maps g#col-md-12 a:hover .cls-34,
svg#index-maps g#col-md-12 a:hover .cls-7 {
    fill: #fff;
}

svg#index-maps g#col-md-12 a:hover .cls-35 {
    stroke: #fff;
}

svg#index-maps g#col-md-12 a:hover .cls-36 {
    fill: #2a2e38;
}

svg#index-maps g#col-md-12 a:hover .map-loc {
    fill: #fff;
}

svg#index-maps g#col-md-12 a:hover #map-txt-1 {
    fill: #fff;
}

svg#index-maps g#col-md-12 a:hover #map-txt-2 {
    stroke: #fff;
}

svg#index-maps g#col-md-12 a:hover #map-txt-3 {
    fill: #2a2e38;
}


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

footer#main-footer {
    background: #1b4c7b;
    padding: 42px 0px 41px;
}

footer#main-footer p {
    color: #c7cfd3;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 5px;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}

footer#main-footer a:hover {
    color: #2591ce;
}

footer#main-footer strong {
    color: #fff;
}

footer#main-footer .text-left span {
    border-left: 1px solid #c7d1e5;
    margin-left: 18px;
    padding-left: 18px;
}

#social-icons {
    padding: 0;
    list-style: none;
    display: inline-flex;
    width: 120px;
    justify-content: space-between;
    margin-top: 5px;
}

#social-icons img {
    width: 30px;
    border: 1px solid;
    padding: 2px;
}

@media (max-width: 767px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    footer#main-footer .text-left span {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
}


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

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}

.grid-bottom-featured-wrap {
    background-image: none;
}

.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}

.grid-bottom-featured-wrap-p {
    color: #323233;
}


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

.modal {
    overflow-y: visible;
}

.modal-dialog {
    max-width: 280px;
    margin: 50px auto;
}

.modal-header {
    text-align: center;
}

.modal-body {
    padding: 15px 23px;
}

.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #104570;
    border: 1px solid #104570;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    height: auto;
}

.login-form input[type="submit"]:hover,
.login-form input[type="submit"]:focus {
    background: #232d69;
    border: 1px solid #232d69;
    text-decoration: none;
}

.login-form a {
    color: #232d69;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.login-form a:hover,
.login-form a:focus {
    color: #17224d;
}

.login-form input:last-of-type {
    width: 100px;
    margin: none;
}

h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

h4#myModalLabel {
    font-size: 22px;
    color: #4A4F56;
    padding-bottom: 0px;
}


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


/*----------- MEDIA QUERY --------------------*/

@media (min-width: 1332px) and (max-width: 1365px) {}

@media (max-width: 1200px) {
    .carousel-wrap,
    .carousel-indicators,
    .caption-wrapper {
        max-width: 970px;
    }
    #slideshow-inside-wrap .carousel-indicators {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1400px;
        max-width: 100%;
    }
    #logo-wrap {
        padding-left: 5px;
    }
    .captcha-field-wrap {
        padding-left: 0px;
    }
}

@media (min-width: 1000px) {
    .container {}
}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
}

@media (max-width: 991px) {
    .carousel-wrap,
    .carousel-indicators,
    .caption-wrapper {
        max-width: 750px;
    }
    #slideshow-inside-wrap .carousel-indicators {
        max-width: 750px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #search-social-wrap {
        margin-top: 25px;
        margin-bottom: 20px;
    }
    #resources-section-wrap {
        margin-top: 60px;
    }
    #ads-section-wrap,
    #connect-section-wrap {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .container {}
    #resources-section-wrap {
        margin-top: 60px;
    }
    .news-item {
        margin-bottom: 25px;
    }
    #news-section-wrap .blue-btn-wrap {
        margin-top: 12px;
    }
    #events-section-wrap {
        margin-top: 70px;
    }
    #ads-section-wrap,
    #connect-section-wrap {
        margin-top: 60px;
    }
}

@media (min-width: 560px) and (max-width: 767px) {}

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

@media (max-width: 480px) {
    .container {}
}

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


/* saf3+, chrome1+ */

@media screen and (-webkit-min-device-pixel-ratio:0) {
    li.mobile-search-wrap .search-icon-input {
        padding-right: 10px;
    }
    .mobile-search-wrap .inside-search-input {
        width: 89%;
    }
}


/* Mozilla Firefox */

@-moz-document url-prefix() {
    li.mobile-search-wrap .search-icon-input {
        padding-right: 5px;
    }
}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome,
    li.mobile-search-wrap .search-icon-input {
        padding-right: 5px;
    }
}


/* Internet Browser */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {}</pre></body></html>