*, *: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: 'Open Sans', sans-serif;
	color: #333333;
	font-size: 16px;
}
p {
	font-family: 'Open Sans', sans-serif;
	color: #333333;
	font-size: 16px;
}
#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 {
	margin: 0px;
	padding: 0px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #282561;
}
h1 a, h2 a, h3 a, h4 a {
	color: #282561;
	text-decoration: none;
}

h1 { 
	font-size: 35px;
	color: #282561;
}
h2 { font-size: 29px;}
h3 { font-size: 26px; }
h4 { font-size: 23px; }

h1.title{
	margin-bottom: 	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
--------------------------------------------------------*/


header#main-header {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
     -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;

    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 183px; */
}
    /*Target just IE*/
    @media screen and (min-width:0\0) {
        header#main-header {
            position: fixed;
            width: 100%;
        }
        main {
            margin-top: 183px;
        }
        .slideshow-wrap {
            margin-top: 170px;
        }
    }
#top-header-wrap {
    background: #fff;
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 135px;
    padding: 25px 0px;
}  
    @media (min-width: 768px) and (max-width: 990px) {
        #top-header-wrap {
            height: auto;
            padding: 0px;
        }
    }
    @media (max-width: 767px) {
        #top-header-wrap {
            height: auto;
        }
    }


.top-header-wrap {
    padding: 15px 0px;
}
#logo-wrap a {
	text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
}
svg#main-logo, svg#modal-main-logo {
    width: 93px;
    height: 56px;
    max-width: 100%;
}
#right-side-wrap {
    text-align: right;
    margin-top: 12px;
}
    @media (max-width: 990px) {
        #right-side-wrap {
            margin-top: 30px;
        }
    }
    @media (max-width: 767px) {
    	#right-side-wrap {
            margin-top: 10px;
        }
	}
    @media (max-width: 480px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}
    @media (max-width: 420px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}
    @media (max-width: 380px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}


/* Mobile SVG burger menu */

svg#burger-menu {
    width: 30px;
    height: 22px;
}
.mobile-menu-wrap {
    display: inline-block;
    vertical-align: middle;
}


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

#search-login-wrap {
    display: inline-block;
}
#search-input {
    max-width: 165px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 17px;
    color: #929292;
}
	@media (min-width: 768px) and (max-width: 990px) {
		#search-input {
            max-width: 150px;
            margin-right: 20px;
        }
	}
    @media (max-width: 480px) {
    	#search-input {
            max-width: 155px;
            margin-right: 10px;
        }
	}
    @media (max-width: 420px) {
    	#search-input {
            max-width: 135px;
            margin-right: 8px;
        }
	}
    @media (max-width: 380px) {
    	#search-input {
            max-width: 115px;
            margin-right: 5px;
        }
	}
.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: #929292;
}

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

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

#search-input :-ms-input-placeholder {  
   color: #929292;  
}
.icon-search:before {
    content: url("../images/search-icon.png");
}
#search-input input {
    border: 0px;
    box-shadow: none;
    height: 29px;
    color: #929292;
    font-size: 16px;
    font-weight: 500;
    font-family: 'lato', sans-serif;
    padding: 0px 15px;
}
#search-input button {
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 4px 12px 0px;
    height: 29px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.input-group.search-input-wrap {
    border: 1px solid #17224d;
    background: #fff;
    border-radius: 15px;
}


/* 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;
}
li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #d3546c;
    background: #a71930;
}
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: #fff;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}
.mobile-search-wrap ::-webkit-input-placeholder {
   color: #fff;
}

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

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

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



/* 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>li {
    float: left;
    position: relative;
    display: block;
    margin-right: 5px;
}
.social-media-wrap svg {
    width: 33px;
    height: 33px;
}

.social-media-wrap a:hover svg#fb-icon .cls-1, .social-media-wrap a:hover svg#ig-icon .cls-1,
.social-media-wrap a:hover svg#twitter-icon .cls-1, .social-media-wrap a:hover svg#linkedin-icon .cls-1, 
.social-media-wrap a:hover svg#youtube-icon .cls-1 {
    fill: #a71930 !important;
    stroke: #a71930 !important;
}
.social-media-wrap a:hover svg#fb-icon .cls-2, .social-media-wrap a:hover svg#ig-icon .cls-2,
.social-media-wrap a:hover svg#twitter-icon .cls-2, .social-media-wrap a:hover svg#linkedin-icon .cls-2,
.social-media-wrap a:hover svg#youtube-icon .cls-2 {
    fill: #ffffff !important;
}


/* Mobile Social Media */

.mobile-sm-wrap svg {
    width: 31px;
    height: 31px;
}
li.mobile-sm-wrap {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}
    @media (max-width: 767px) {
        li.mobile-sm-wrap {
            display: inline-block !important;
        }

    }
li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 5px;
}
.mobile-sm-wrap svg .cls-1, .mobile-sm-wrap svg#twitter-icon .cls-1 {
    fill: #fff !important;
    stroke: #282561 !important;
}
.mobile-sm-wrap svg .cls-2, .mobile-sm-wrap svg#twitter-icon .cls-2 {
    fill: #282561 !important;
}
.mobile-sm-wrap a:hover svg .cls-1, .mobile-sm-wrap a:hover svg#twitter-icon .cls-1  {
    fill: #a71930 !important;
    stroke: #a71930 !important;
}
.mobile-sm-wrap a:hover svg .cls-2, .mobile-sm-wrap a:hover svg#twitter-icon .cls-2 {
    fill: #ffffff !important;
}



/*--------------------------------------------------------
					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;
}
#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----------*/
#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{
	top: ;
	width: ;
}
.carousel-caption { 
	position: absolute;
	z-index: 100;
	background-color: #002857;
	background: rgba(0, 0, 0, .6);
	padding: 10px 15px;
	left: inherit;
	bottom: 0px;
	right: 0px;
	top: inherit;
	width: 100%;
	text-align: left;
	text-shadow: none;
}

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

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

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


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

.header-title h1, .header-title h2, .header-title h3, .header-title img {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 20px;
}
.header-title img {
    margin-left: 15px;
}


#ads-top-section-wrap {
    margin-top: 35px;
    margin-bottom: 50px;
}
.ads-inside-wrap {
    border-bottom: 1px solid rgba(128,129,132,0.3);
    padding-bottom: 30px;
}
#ads-top-section-wrap img {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}




#events-announcement-section-wrap {
    padding-top: 20px;
    padding-bottom: 40px;
}
#events-section-wrap h2 {
    margin-bottom: 25px;
}
#events-section-wrap h2 a, #events-section-wrap h2 a:hover {
    text-decoration: none;
    color: #282561;
}
#events-section-wrap h2::after {
    content: url(../images/calendar-dark-icon.svg);
    margin-left: .9ch;
}

/* Announcements Slideshow Section */

#announcements-slide-wrap {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    #announcements-slide-wrap {
        margin-top: 50px;
    }
}
#announcements-slide-wrap h2 {
    margin-bottom: 5px;
}
#announcements-slide-wrap h2::after {
    content: url(../images/announcement-icon.svg);
    margin-left: 1ch;
}
#announcements-slide-wrap .carousel {
    /*border-bottom: 1px solid rgba(128,129,132,0.3);*/
    padding-bottom: 30px;
}
#announcements-slide-wrap .carousel a {
    text-decoration: none;
}
#announcements-slide-wrap .carousel .item img {
    display: inline-block;
    vertical-align: text-top;
    margin-top: 25px;
    border-radius: 50%;
}
#announcements-slide-wrap .carousel-caption {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    background: #fff;
    min-height: 240px;
    padding-top: 35px;
}
#announcements-slide-wrap .carousel-inner {
    margin: 0 auto;
    text-align: center;
}
#announcements-slide-wrap .carousel-indicators {
    bottom: 0px;
}
#announcements-slide-wrap .carousel-indicators li {
    border: 1px solid #266e92;
    background: #fff;
    width: 16px;
    height: 16px;
    margin: auto;
    margin-left: 8px;
}
#announcements-slide-wrap .carousel-indicators li.active {
    border: 1px solid #266e92;
    background: #266e92;
    width: 16px;
    height: 16px;
}
#announcements-slide-wrap .carousel-control {
    display: none;
    background: transparent;
    border: 0;
    margin-left: 0px;
    margin-right: 0px;
}
#announcements-slide-wrap .carousel-control:hover {
    background: transparent !important;
}
#announcements-slide-wrap p.caption-text {
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    padding: 5px 0px;
    font-style: italic;
    max-height: 100%;
    color: #727272;
}
	@media (max-width: 767px) {
		#announcements-slide-wrap p.caption-text,
		#announcements-slide-wrap p.alt-text {
			text-align: center !important;
		}
	}
	@media (min-width: 560px) and (max-width: 767px) {
    	#announcements-slide-wrap p.caption-text,
		#announcements-slide-wrap p.alt-text {
			text-align: left; !important;
		}
	}
#announcements-slide-wrap p.alt-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: rgba(38,110,146,0.7);
    text-align: left;
    line-height: 28px;
    padding: 5px 0px;
    width: 100%;
    max-height: 100%;
    font-style: normal;
}
#announcements-slide-wrap p.alt-text:empty {
    display: none;
}
#announcements-slide-wrap p.alt-text:before {
    margin-right: 3px;
    background-color: rgba(38,110,146,0.7);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 2.3%;
    height: 3px;
}




/* Blog/ Headlines Section */

#blog-headline-section-wrap {
    padding-top: 40px;
    padding-bottom: 20px;
}
#blog-section-wrap h2, #headlines-section-wrap h2{
    margin-bottom: 20px;
}
	@media (max-width: 767px) {
		#headlines-section-wrap h2 {
		    border-top: 1px solid rgba(128,129,132,0.3);
		    padding-top: 35px;
		    margin-top: 20px;
		}
	}
#blog-section-wrap h2::after {
    content: url(../images/blog-icon.svg);
    margin-left: 1ch;
}
#headlines-section-wrap h2::after {
    content: url(../images/headline-icon.svg);
    margin-left: 1ch;
}



.news-item {
    margin-bottom: 25px;
}
a.news-title-link {
    color: #266e92;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}
.news-item .description {
    margin-top: 8px;
}




/* Testimonial Video Section */

#testiomial-section-wrap {
    margin-top: 20px;
    margin-bottom: 50px;
}

#testiominal-inside-wrap .col-content-wrap {
    border-top: 1px solid rgba(128,129,132,0.3);
    padding-top: 60px;
}
#testiominal-inside-wrap img {
    text-align: center;
    margin: 0 auto;
}

	@media (max-width: 767px) {
		#testiominal-inside-wrap .col-content-wrap .column {
		    margin-bottom: 20px;
		}
		#testiomial-section-wrap {
		    margin-bottom: 20px;
		}
	}

@media (min-width: 990px) and (max-width: 1199px) {
    #testiomial-section-wrap iframe {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 991px) {
    #testiomial-section-wrap iframe {
        width: 100%;
        height: auto;
    }
}


/* Vendor Members Section */

#vendor-members-section-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
#vendor-inside-wrap .col-content-wrap {
    border-top: 1px solid rgba(128,129,132,0.3);
    padding-top: 60px;
}
#vendor-inside-wrap img {
    text-align: center;
    margin: 0 auto;
}
	@media (max-width: 767px) {
		#vendor-inside-wrap .col-content-wrap .column {
		    margin-bottom: 20px;
		}
	}




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


/*--------------------------------------------------------
				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#main-footer{
	margin-top: 50px;
}
.footer-inside-wrap {
    border-top: 1px solid rgba(128,129,132,0.3);
    padding-top: 15px;
    padding-bottom: 10px;
}


/*--------------------------------------------------------------
                      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: 'Open Sans', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #17224d;
    border: 1px solid #17224d;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 50px;
    font-family: 'Open 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: #17224d;
    border: 1px solid #17224d;
    text-decoration: none;
}
.login-form a {
    color: rgba(23,34,77,0.7);
    font-size: 14px;
    font-family: 'Open 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: #222e3f;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Lora', cursive;
}
h4#myModalLabel {
    color: #292728;
    font-size: 24px;
    padding-bottom: 0px;
}




/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/
/*Member Menu 5 styles to fix stacking order*/
#admin_menu_wrap_5,
#member_menu_wrap_5,
#member_custom_menu_wrap_5 {
    position: relative;
}
#admin_menu_wrap_5 {
    z-index: 3000;
}
#member_menu_wrap_5 {
    z-index: 2990;
}
#member_custom_menu_wrap_5 {
    z-index: 2980;
}
#admin_menu_wrap_5 .dropdown-menu>li>a,
#member_menu_wrap_5 .dropdown-menu>li>a,
#member_custom_menu_wrap_5 .dropdown-menu>li>a {
    background: white;
}
#mheader_5_wrapper {
    z-index: 1;
    position: relative;
}
#mheader_5_wrapper .dropdown-menu>li>a:hover,
#mheader_5_wrapper .dropdown-menu>li>a:focus {
    background: #f5f5f5;
}
@media (max-width: 767px) {
    .dropdown-menu li.dropdown-submenu.open {
        background: transparent !important;
    }
    #nav_menu .dropdown-menu li.dropdown-submenu.open a.sub-a {
        color: #17224d !important;
    }
}
