<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;
    font-weight: 400;
    color: #666666;
}
p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-bottom: 20px;
}

#subpage-main p:empty { 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: 'Raleway', sans-serif;
    font-weight: 800;
    color: #333333;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 35px;
    color: #333333;
}
h2 {
    font-size: 30px;
    color: #1A1A1A;
}
h3 {
    font-size: 25px;
    color: #1A1A1A;
}
h4 {
    font-size: 18px;
}

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

    @media print {
      a[href]:before, a[href]:after {
        content: none !important;
      }
    }

/*--------------------------------------------------------
    Objects
--------------------------------------------------------*/
#subpage-main img {
    display: 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.*/
}



/*--------------------------------------------------------
                     TOP HEADER
--------------------------------------------------------*/
.top-header {
    background: #006B2E;
    height: 45px;
}
.top-right-wrap {
    text-align: right;
    padding-top: 10px;
}



/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
#login-wrap a {
    background: #3C346F;
    color: #fff;
    padding: 4px 40px 5px;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #D9D9ED;
}
    @media (max-width: 767px) {
        #login-wrap a {
            padding: 4px 30px 5px;
        }
    }
    @media (max-width: 480px) {
        #login-wrap a {
            padding: 4px 15px 5px;
        }
    }
    @media (max-width: 360px) {
        #login-wrap a {
            font-size: 12px;
        }
    }

#login-wrap a:hover, #login-wrap a:focus {
    background: #23204F;
}


/* Mobile Login */
.mobile-login-wrap {
    margin-top: 25px;
}
.mobile-login-wrap a {
    background: #4F85C4 !important;
    color: #fff;
    padding: 8px 19px 11px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #4F85C4;
    border-radius: 2px;
    width: 150px !important;
}


#join-wrap {
    display: inline-block;
    vertical-align: middle;
}
#join-wrap a {
    background: #fff;
    color: #006B2E;
    padding: 5px 40px 4px;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #fff;
}
@media (max-width: 767px) {
        #join-wrap a {
            padding: 5px 30px 4px;
        }
    }
    @media (max-width: 480px) {
        #join-wrap a {
            padding: 5px 15px 4px;
        }
    }
    @media (max-width: 360px) {
        #join-wrap a {
            font-size: 12px;
        }
    }
#join-wrap a:hover {
    background: #006B2E;
    color: #fff;
}


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


#search-input {
    max-width: 300px;
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    margin-right: 20px;
    top: 0px;
    position: relative;
}

    @media (max-width: 420px) {
        #search-input {
            max-width: 230px;
        }
    }
    @media (max-width: 360px) {
        #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: #4D4D4D;
}

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

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

#search-input :-ms-input-placeholder {  
   color: #4D4D4D;  
}
.icon-search:before {
    content: url("../images/search-icon.png");
}
#search-input input {
    border: 0px;
    box-shadow: none;
    height: 40px;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 15px;
}
#search-input button {
    background: #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 40px;
    border-radius: 0px;
    outline: none;
}
.input-group.search-input-wrap {
    border: 1px solid #D9D8D6;
    background: #fff;
    border-radius: 2px;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 0px;
    padding-left: 0px;
    width: 260px;
}
li.mobile-search-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-bottom: 0px !important;
}
li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #bcb2d8;
    background: #fff;
}
/*li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}*/
.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #646464;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}
.mobile-search-wrap ::-webkit-input-placeholder {
   color: #646464;
}

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

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

.mobile-search-wrap :-ms-input-placeholder {  
   color: #646464;  
}
.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;
}







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


#main-header {
    padding: 10px 0px 13px;
    position: relative;
    z-index: 2;
    background: #fff;
}
svg#main-logo {
    max-width: 100%;
    width: 504px;
    height: 64px;
}

#wvhs-logo-wrap img {
    float: right;
}





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

.dropdown-menu li{
    width: 100%;
}
.nav&gt;li&gt;a:hover, .nav&gt;li&gt;a:focus {
    background-color: transparent;
}

/*--------------------------------------------------------
                    Index / Main Body
--------------------------------------------------------*/
main {
    min-height: calc(100vh - 44px - 149px - 48px - 130px);
    /*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 {
    padding-top: 20px;
}
#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: 70px;
    position: relative;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .slideshow-wrap {
            margin-bottom: 60px;
        }
    }
    @media (max-width: 767px) {
        .slideshow-wrap {
            margin-bottom: 50px;
        }
    }

.slideshow-wrap .container  {
    width: 100%;
}
.slideshow-wrap img{
    width: 100%;
}  
.slideshow-wrap .carousel-inner .item img {
    /*max-height: 500px;*/
    object-fit: cover;
}
.slideshow-wrap a {
    text-decoration: none;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
#slide-row{
    margin-bottom: 10px;
}
.slideshow-wrap .carousel-control {
    display: none;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}
.carousel-control {
    margin: auto 0px;
    display: none;
}
.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(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}
.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(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 30px;
    margin-right: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .carousel-control.left, .carousel-control.right {
        }
    }
    @media (max-width: 767px) {
        .carousel-control.left, .carousel-control.right {
            height: 38px;
            width: 38px;
        }
    }
.carousel-control img {
    width: 16px;
    height: 22px;
    margin-top: 13px;
}
    @media (max-width: 767px) {
        .carousel-control img {
            margin-top: 7px;
        }
    }


.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(37,82,130,0.9);
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding: 0;
    margin: 0;
    min-height: 90px;
}
    @media (max-width: 990px) {
        .carousel-caption {
            background: rgba(37,82,130,0.9);
            display: block;
            position: static;
            width: 100%;
            height: auto !important;
            min-height: 150px !important;
        }
    }
   @media (max-width: 767px) {
        .carousel-caption {
            display: block;
            position: static;
            width: 100%;
            height: auto !important;
            min-height: 160px !important;
            border: none;
        }
    }

.caption-inside-wrap {
    padding: 14px 0px;
}
p.caption-text {
    font-size: 26px;
    font-weight: 700;
    display: block;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    margin-bottom: 0px;
    word-wrap: break-word;
    line-height: normal;
}
p.alt-text {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 22px;
}
    @media (max-width: 767px) {
        p.alt-text {
            font-size: 16px;
        }
    }

.carousel-indicators {
    bottom: 0px;
}
.carousel-indicators li {
    width: 14px;
    height: 14px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    border-radius: 15px;
}
.carousel-indicators li.active {
    width: 14px;
    height: 14px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #006B2E;
    border: 1px solid #006B2E;
    border-radius: 15px;
}
.caption-text-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 74%;
}
.caption-btn-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    float: right;
    text-align: right;
    margin-top: 20px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-text-wrap {
            width: 64%;
        }
        .caption-btn-wrap {
            width: 35%;
        }
    }

.caption-btn-wrap a {
    background: #4F85C4;
    border: 1px solid #4F85C4;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border-radius: 1px;
    text-align: center;
}


.slideshow-wrap .carousel-caption {
    background: transparent;
    min-height: auto;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slideshow-wrap .carousel-caption p.caption-text {
    color: #006B2E;
    font-size: 100px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    line-height: 100px;
}
.slideshow-wrap .carousel-caption p.alt-text {
    display: none;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .slideshow-wrap .carousel-caption {
            margin: 0;
            position: absolute;
            min-height: auto !important;
            top: 50%;
        }
        .slideshow-wrap .carousel-caption p.caption-text {
            font-size: 50px;
            line-height: 50px;
        }
    }

    @media (max-width: 767px) {
       .slideshow-wrap .carousel-caption {
            margin: 0;
            position: absolute;
            min-height: auto !important;
            top: 50%;
        }
        .slideshow-wrap .carousel-caption p.caption-text {
            font-size: 36px;
            line-height: 36px;
        }
    }




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

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


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


/* Buttons */
.btn-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
}
.btn-wrap a {
    background: #C2A303;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 25px;
    color: #fff;
}
.btn-wrap a:hover {
    background: #A08204;
}



/* Welcome */
#welcome-section-wrap {
    margin-bottom: 80px;
}
#welcome-section-wrap h1 {
    padding-bottom: 20px;
    overflow: hidden;
}
#welcome-section-wrap h1:after {
    background-color: rgba(230,230,230,0.6);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
    left: 0.5em;
    margin-right: -50%;
}
#welcome-section-wrap p {
    margin-bottom: 25px;
}

#welcome-section-wrap ul {
    padding: 0px;
    margin: 0px;
}
#welcome-section-wrap ul li {
    list-style: none;
    padding-left: 20px;
    padding-bottom: 0px;
    color: #666666;
    font-size: 16px;
}
#welcome-section-wrap ul li a {
    display: block;
    color: #666666;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
#welcome-section-wrap ul li a:hover, #welcome-section-wrap ul li a:focus {
    color: #666666;
    text-decoration: none;
}
#welcome-section-wrap ul li:before {
    content: "";
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    cursor: pointer;
    background: #B3B3B3;
    border: none;
    border-radius: 5px;
    top: 1em;
    left: -20px;
}
#welcome-img {
    margin-top: 21px;
}




/* Featured Directory */
.featured-directory-top {
    padding: 70px 0px 50px;
}
.featured-directory-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: .95;
    z-index: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
    background: linear-gradient(120deg, rgb(0,136,62), rgb(60,52,111)) , url(../images/directory-bg-top.png) no-repeat;
}
.featured-directory-wrap {
    background: url(../images/directory-bg-bottom.png) repeat-x 0 0;
    /*background: url(../images/directory-bg.png) repeat-x 0 0;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    display: block;
    max-width: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
    margin-bottom: 80px;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}
.featured-directory-wrap::after {
    /*content: ""; /* UNCOMMENT this once the client provided a new photo to enable overlay gradient background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgb(0,136,62), rgba(60,52,111, .9));
    opacity: .9;
    z-index: 1;
}
.featured-directory-wrap &gt; * {
    z-index: 100;
    position: relative;
}


#featured-contact-wrap &gt; * {
    color: #fff;
}
#featured-contact-wrap h2 {
    color: #fff;
    font-size: 25px;
}
#featured-contact-wrap h1 {
    color: #fff;
    font-size: 40px;
}
#featured-contact-wrap p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
#featured-contact-wrap .btn-wrap {
    margin-top: 40px;
    margin-bottom: 30px;
}
#featured-contact-wrap .btn-wrap a {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 30px;
}
#featured-contact-wrap .btn-wrap a:hover {
    background: transparent;
    border: 1px solid #F7931E;
    color: #F7931E;
}

#member-directory-wrap &gt; * {
    color: #fff;
}

#member-directory-wrap h2 {
    color: #fff;
    font-size: 25px;
}
#member-directory-wrap h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
#member-directory-wrap .member-directory-form input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 0px;
    float: left;
    width: 89%;
    background: #FFFFFF;
    outline: none;
    height: 42px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    color: #808080;
    font-size: 18px;
    padding: 5px 5px 5px 15px;
}
#member-directory-wrap .member-directory-form button {
    padding: 12px 9px 8px;
    background: #fff;
    color: white;
    font-size: 17px;
    border: 0px;
    cursor: pointer;
    height: 42px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
#member-directory-wrap .member-directory-form button:hover {
    background: #fff;
    outline: none;
}
#member-directory-wrap .member-directory-form button .icon-search:before {
    content: url(../images/search-icon.png);
}
#member-directory-wrap .member-directory-form::after {
  content: "";
  clear: both;
  display: table;
}
#member-directory-wrap .btn-wrap {
    background: #00883E;
    border: 1px solid #00883E;
    border-radius: 3px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 10px;
    width: 100%;
    max-width: 100%;
    text-align: center;   
    margin-top: 30px;
    margin-bottom: 40px;
}
#member-directory-wrap .btn-wrap a {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    text-align: center;
    display: block;
}
#member-directory-wrap .btn-wrap:hover {
    background: #006B2E;
    border: 1px solid #006B2E;
}





/* Featured Members */
#featured-members-section {
    margin-bottom: 50px;
}
#featured-members-section h2 {
    overflow: hidden;
    margin-bottom: 15px;
}
#featured-members-section h2:after {
    background-color: rgba(230,230,230,0.6);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
    left: 0.5em;
    margin-right: -50%;
}
#featured-members-section .col-content-wrap img {
    min-height: 200px;
    height: 200px !important;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #E6E6E6;
    margin-bottom: 12px;
}
#featured-members-section .col-content-wrap {
    text-align: center;
}
#featured-members-section .col-content-wrap a {
    color: #3C346F;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}
#featured-members-section .col-content-wrap a:hover {
    color: #F7931E;
}





.news-events-outside-wrap {
    border-top: 1px solid #F1F5F8;
    padding-top: 65px;
    margin-top: 40px;
}

/* Latest News */
#news-section-wrap {
    margin-bottom: 50px;
}
#news-section-wrap h2 {
    overflow: hidden;
    margin-bottom: 8px;
}
#news-section-wrap h2:after {
    background-color: rgba(230,230,230,0.6);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
    left: 0.5em;
    margin-right: -50%;
}
#news-section-wrap h3 {
    background: #00883E;
    color: #fff;
    padding: 6px 5px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Nunito Sans', sans-serif;
}
.news-item {
    margin-bottom: 30px;
}
.news-image {
    display: inline-block;
    vertical-align: middle;
    width: 35%;
    margin-right: 20px;
}
.news-image img {
    max-width: 100%;
    height: auto;
}
.news-date-title {
    display: inline-block;
    vertical-align: top;
    width: 61%;
}
.news-item .news-date {
    margin-bottom: 15px;
}
.news-item .news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.news-item .news-date span {
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #666666;
}
h3.news-title {
    padding-bottom: 0px;
}
a.news-title-link {
    color: #333333;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;
    line-height: 22px;
}
a.news-title-link:hover {
    color: #0071BC !important;
    text-decoration: underline;
}
.news-description {
    margin-top: 10px;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #4D4D4D;
}
.news-btn a {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}


.rss-item {
    margin-bottom: 12px;
    border-bottom: 2px dashed #E6E6E6;
    padding-bottom: 10px;
}
#news-section-wrap .rss-item:last-child, #news-section-wrap .rss-item:nth-last-child(2) {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.rss-item h4 {
    color: #3C346F;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    padding-bottom: 3px;
}
.rss-item .description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}


/* Upcoming Events */

#events-section-wrap h2 {
    overflow: hidden;
    margin-bottom: 8px;
}
#events-section-wrap h2:after {
    background-color: rgba(230,230,230,0.6);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 70%;
    left: 0.5em;
    margin-right: -50%;
}
.event-item {
    margin-bottom: 22px;
}
.event-date-wrap {
    background: #00883E;
    border: 1px solid #00883E;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 60px;
    margin-right: 10px;
    padding: 3px 0px 5px;
    border-radius: 2px;
    text-align: center;
}
.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 76px);
    width: -webkit-calc(100% - 76px);
    width: -moz-calc(100% - 76px);
    position: relative;
    top: -2px;
}
.event-month {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    padding-top: 3px;
}
.event-date {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 33px;
}
.event-year {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}
.event-time {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}
.event-time img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}
h3.event-title {
    font-weight: 700;
    padding-bottom: 0px;
    margin-bottom: 8px;
    line-height: 17px;
}
a.ev-title-link {
    color: #3C346F;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    word-wrap: break-word;
}
a.ev-title-link:hover {
    color: #F7931E;
    text-decoration: underline;
}
.event-blurb {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 20px;
}
#events-section-wrap .btn-wrap a {
    background: #fff;
    border: 1px solid #D7D7E0;
    border-radius: 2px;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
}
#events-section-wrap .btn-wrap a:hover {;
    border: 1px solid #F7931E;
    color: #F7931E;
}





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

section#top-footer {
    background: #3C346F;
    padding: 50px 0px 40px;
    margin-top: 35px;
}
#footer-info-wrap {
    padding: 35px 0px;
}
#footer-info-wrap, #footer-info-wrap * {
    color: #D9D9ED;
    text-decoration: none;
}
#footer-info-wrap a:hover {
    color: #F7931E;
    text-decoration: underline;
}


.footer-menu #nav_menu .navbar-nav {
    display: inline-block;
    columns: 3;
    padding: 0px;
}
.footer-menu #nav_menu .navbar-nav .caret {
    display: none;
}
.footer-menu #nav_menu .navbar-nav&gt;li a {
    border-left: 0px;
    padding: 10px 10px 0px 0px;
    text-align: left;
    color: #D9D9ED;
}
.footer-menu #nav_menu .navbar-nav&gt;li a:hover, 
.footer-menu #nav_menu .navbar-nav&gt;li a:focus {
    background: transparent;
    color: #F7931E;
    text-decoration: underline;
}
.footer-menu #nav_menu .navbar-nav&gt;li:last-child a {
    border-right: 0px;
}
.footer-menu #nav_menu .navbar-nav .dropdown-menu,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-0,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-1,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-2 {
    display: block;
    width: 100%;
    position: relative;
    float: none;
    margin: 0;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
}
.footer-menu #nav_menu ul.navbar-nav .dropdown,
.footer-menu #nav_menu ul.navbar-nav:first-child&gt;li {
    border-bottom: 1px solid rgba(82,77,145,0.4);
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
    float: none;
    display: inline-block;
    page-break-inside: avoid;
}
.footer-menu #nav_menu ul.navbar-nav:first-child li:last-child {
    border-bottom: 0px;
}
.footer-menu #nav_menu .dropdown-menu li {
    padding-left: 20px;
    float: none;
    display: inline-block;
    border: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}
.footer-menu #nav_menu .dropdown-menu li a {
    padding: 0;
}
.footer-menu #nav_menu .dropdown-menu li a:before {
    content: "";
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    cursor: pointer;
    background: #D9D9ED;
    border: none;
    border-radius: 5px;
    top: 0.8em;
    right: 20px;
}



.newsletter-wrap {
    margin-top: 10px;
    background: #524D91;
    margin-bottom: 35px;
    padding: 18px 25px 13px;
    color: #D9D9ED;
    font-weight: 700;
}
.newsletter-title {
    padding-top: 15px;
}
.newsletter-form #contact label {
    display: none;
}
.newsletter-form #contact .form-group {
    display: inline-block;
    margin-bottom: 0px;
}
.newsletter-form #contact .form-group.row {
    width: 82%;
}
.newsletter-form #contact .col-sm-offset-2.col-sm-10 {
    margin: 0;
    padding: 0;
}
.newsletter-form #contact .form-group.row input.form-control {
    border-radius: 0px !important;
    border-top-left-radius: 2px !important;
    border-bottom-left-radius: 2px !important;
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    height: 50px;
    background: #fff;
    border: 1px solid #fff;
}
.newsletter-form #contact input.btn.btn-default {
    background: #00883E;
    border: 1px solid #00883E;
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    color: #fff;
    padding: 5px 36px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0px;
    height: 50px;
    outline: none;
    box-shadow: none;
}



footer#main-footer {
    background: #2C2B38;
    padding: 34px 0px 31px;
    color: #fff;
}
footer#main-footer p {
    color: #D9D9ED;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 26px;
}
.footer-top-credit-section {
    margin-bottom: 10px;
}
.footer-top-credit-section .container::after {
    background-color: rgba(60,52,111,0.4);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}
.footer-top-credit-section h5 {
    color: #fff;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    line-height: 24px;
    padding-top: 10px;
}

.footer-credit-section .text-left p:nth-child(2) {
    margin-top: 12px !important;
}
footer#main-footer a {
    color: #D9D9ED;
    text-decoration: underline;
    font-weight: 400;
}
footer#main-footer a:hover {
    color: #F7931E;
}
footer#main-footer strong {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}
footer#main-footer span.footer-privacy {
    border-left: 1px solid #AFC6DB;
    margin-left: 14px;
    padding-left: 14px;
}
footer#main-footer .text-right a {
    text-decoration: underline;
    font-weight: 400;
}

    @media (min-width: 768px) and (max-width: 990px) {
        footer#main-footer .text-left, footer#main-footer .text-right {

        }

    }

    @media (max-width: 767px) {
        footer#main-footer .text-left, footer#main-footer .text-right {
            text-align: center;
        }
        footer#main-footer p {
            margin-bottom: 5px;
        }
        footer#main-footer span.footer-privacy {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }
        .back-top-wrap {
            padding-top: 0px !important;
            margin-bottom: 15px;
        }
        .social-media-wrap ul {
            text-align: center !important;
        }
        .social-media-wrap ul&gt;li {
            display: block !important;
            margin: 0 auto 10px;
        }
    }



.footer-credit-section .social-media-outside-wrap ul&gt;li {
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
}
.footer-credit-section .social-media-outside-wrap ul&gt;li:last-child {
    margin-right: 0px;
}
.footer-credit-section .social-media-outside-wrap ul&gt;li .social-media-outside-wrap svg {
    width: 30px;
    height: 30px;
}


/* Social Media Icons */

.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .social-media-wrap {
        display: inline-block !important;
    }
}

.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-media-wrap ul&gt;li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    color: #D9D9ED;
    font-size: 16px;
    vertical-align: middle;
}
.social-media-wrap ul&gt;li:last-child {
    margin-right: 0px;
}
.social-media-wrap svg {
    width: 40px;
    height: 40px;
}



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

#mycanvas #news-section-wrap .column,
#mycanvas #get-involved-wrap .column {
    min-height: 415px;
}


/*--------------------------------------------------------------
                      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: #3C346F;
    border: 1px solid #3C346F;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    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: #23204F;
    border: 1px solid #23204F;
    text-decoration: none;
}
.login-form a {
    color: #3A3A3A;
    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: #27313D;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}
h4#myModalLabel {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 22px;
    color: #1A1A1A;
    padding-bottom: 0px;
}




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




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

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

}

@media (max-width: 1200px) {
    .caption-wrapper {
        max-width: 970px;
    }
}

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

}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
    
    #search-input {
        width: 275px;
    }
    #welcome-section-wrap h1:after, #featured-members-section h2:after, #news-section-wrap h2:after {
        width: 70%;
    }
    #events-section-wrap h2:after {
        width: 50%;
    }
    #member-directory-wrap .member-directory-form input[type=text] {
        width: 87%;
    }
    .newsletter-form #contact .form-group.row {
        width: 76%;
    }
}


@media (max-width: 991px) {
    .caption-wrapper {
        max-width: 750px;
    }
    .footer-menu #nav_menu {
        display: block !important;
        border: 0px !important;
        box-shadow: none !important;
    }
}


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

    #mobile-menu-col {
        margin-left: 20px;
    }
    #welcome-section-wrap h1:after, #featured-members-section h2:after, #news-section-wrap h2:after,
    #events-section-wrap h2:after {
        width: 50%;
    }
    #member-directory-wrap .member-directory-form input[type=text] {
        width: 87%;
    }
    .newsletter-title {
        padding-top: 5px;
    }
    .newsletter-form #contact .form-group.row {
        width: 74%;
    }

}


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

    #member-directory-wrap {
        margin-top: 40px;
    }
    .newsletter-title {
        margin-bottom: 20px;
    }
    #featured-members-section .col-content-wrap {
        margin-bottom: 35px;
    }
    #footer-feat-logo .text-left {
        margin-bottom: 20px;
    }
    #welcome-section-wrap h1:after, #featured-members-section h2:after, #news-section-wrap h2:after,
    #events-section-wrap h2:after {
        width: 50%;
    }
    .newsletter-wrap {
        padding-bottom: 40px;
    }

}

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

}

@media (max-width: 580px) {
    .footer-menu #nav_menu .navbar-nav {
        columns: 2;
    }
    .newsletter-form #contact .form-group.row {
        width: 75%;
    }

}

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

    #welcome-section-wrap h1:after, #featured-members-section h2:after, #news-section-wrap h2:after,
    #events-section-wrap h2:after {
        width: 50%;
    }
    .newsletter-form #contact .form-group.row {
        width: 70%;
    }

}

@media (max-width: 380px) {
    .newsletter-form #contact .form-group.row {
        width: 65%;
    }
}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome, .div {
        
     }
}

/* Internet Browser */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  


}</pre></body></html>