*, *: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: 'Lato', sans-serif;
	font-size: 18px;
    color: #3E4147;
}
#mms-main {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    margin-top: 30px;
}
p {
	font-family: 'Lato', sans-serif;
    line-height: 1.5em;
}
#subpage-main p:empty { display: none; } 
#mms_content table#mms_list, #mmsnav, #mms_content {
    font-size: 16px;
}

.center-block {
    display: block !important;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #4A4F57;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #4A4F57;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #4A4F57;
}
/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/
h1, h2, h3, h4 {
	margin: 0px;
    margin-bottom: 25px;
	padding: 0px;
	font-family: 'Lato', sans-serif;
    font-weight: 700;
	color: #26262C;
}

h1 { 
	font-size: 35px;
	/*color:;*/
}
h2 {
	font-size: 33px; 
}
h3 {
	font-size: 30px; 
}
h4 { font-size: 26px; }
h5 { font-size: 24px; }
h6 { font-size: 20px; }

h1.title{
}
h1.title:empty{ display:none; }
/*^^Hides the extra margin that is added on pages without a title*/
#subpage-main p:not(:empty) + h2,
#subpage-main p:not(:empty) + h3,
#subpage-main p:not(:empty) + h4,
#subpage-main ul + h2,
#subpage-main ul + h3,
#subpage-main ul + h4,
#subpage-main table + h2,
#subpage-main table + h3,
#subpage-main table + h4 {
    margin-top: 1.5em;
}
#subpage-main h2 + ul,
#subpage-main h3 + ul,
#subpage-main h4 + ul {
	margin-top: -.75rem; /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}
/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/
a {
	color: ;
    background-image: linear-gradient(to right, #ffffff, #ffffff);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 1.6px;
    padding: 0 0 2px 0;
}
#mms-main a {
    background-image: none;
}
#mms-main .nav .open>a {
    background-color: #4B4A79;
}
a:hover, 
a:focus {
	color: ;
    outline-color: transparent;
    text-decoration: none;
    background-size: 100% 2px;
}
a.button {}
a.button:hover,
a.button:focus
 {
	text-decoration: none;
}
a.button + * {
	padding-top: 1.5em;
}
a.button-link {
    color: #ffffff;
    background-color: #4B4A79;
    border: 1px solid #4B4A79;
    padding: 8px 20px;
    border-radius: 2px;
    display: inline-block;
    margin-top: 40px;
    background-image: none;
}
a.button-link:hover, a.button-link:focus {
    background-color: #6F8227;
    border-color: #6F8227;
    transition: .3s;
    text-decoration: none;
}
/*--------------------------------------------------------
	Objects
--------------------------------------------------------*/
.hidden-row {
    display: none;
}
.hidden-column {
    display: none;
}
.border-wrapper {
    border: 1px solid #DFE4E8;
    border-radius: 3px;
    padding: 40px 25px;
}
#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-wrapper {
    padding: 15px 0;
}
.header-buttons-wrapper {
    background-color: #383759;
    color: #ffffff;
}
.header-buttons-wrapper ul {
    padding: 0;
    margin: 8px 0px;
}
.header-buttons-wrapper ul li:last-of-type {
    margin: 0;
    float: right;
}
.header-buttons-wrapper ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}
.header-buttons-wrapper ul li a, #nav_menu .nav .mobile-login a, 
#mobile-menu-col .mobile-login a, #mobileMenuWrapper #mobile-menu .mobile-login a {
    color: #ffffff;
    line-height: 18px;
    background-color: #4B4A79;
    border: 1px solid #4B4A79;
    padding: 8px 20px;
    border-radius: 2px;
    display: inline-block;
    margin: 0;
    background-image: none;
}
.header-buttons-wrapper ul li a:hover, 
.header-buttons-wrapper ul li a:focus,
#nav_menu .nav .mobile-login a:hover,
#nav_menu .nav .mobile-login a:focus,
#mobile-menu-col .mobile-login a:hover,
#mobile-menu-col .mobile-login a:focus {
    background-color: #6F8227;
    border-color: #6F8227;
    transition: .3s;
    text-decoration: none;
}
#mobile-menu-col {
    margin-top: 10px;
}
#mobile-toggle svg {
    margin-top: 8px;
    margin-left: 20px;
}
#mobile-menu-col .mobile-login, #mobile-toggle {
    display: inline-block;
    vertical-align: middle;
}
/*--------------------------------------------------------
					Search Bar
--------------------------------------------------------*/

.search-menu-wrapper {
    text-align: right;
    margin-top: 13px;
}
input.search-button {
	background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-width: 0px;
    width: 20px;
    height: 20px;
    color: transparent;
    margin-left: -20px;
    padding: 0;
    right: 5px;
    margin-top: 6px;
    float: right;
    position: relative;
}
.search-wrapper .search-input {
	padding: 4px 25px 4px 12px;
    -webkit-appearance: searchfield;
    border: 1px solid #C7D1E5;
    border-radius: 1px;
    font-size: 17px;
    width: 300px;
}
/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

.dropdown-menu li{
	width: 100%;
}
.nav>li>a:hover, .nav>li>a:focus {
	background-color: transparent;
}
#nav_menu {
    padding: 0;
    margin-top: 20px;
}
#nav_menu ul.nav.navbar-nav {
    float: right;
}
#nav_menu .nav li {
    padding-top: 10px;
}
#nav_menu .nav .dropdown-menu li {
    padding: 0px;
}
#nav_menu .nav .dropdown-menu li a {
    padding: 10px 15px;
    font-size: 17px;
}
#nav_menu .navbar-nav>li>.dropdown-menu {
    padding: 0;
    border: none;
}
#nav_menu .nav .dropdown-menu li a:hover {
    background-color: #5D6B0C;
    color: #ffffff;
    transition: .2s;
}
#nav_menu .nav li.mobile-login {
    padding-top: 0;
}
#nav_menu .navbar-nav>li>a {
    color: #3E4147;
    font-size: 17px; 
    margin-right: 30px;
    text-decoration: none;
    background-image: linear-gradient(to right, #5D6B0C, #5D6B0C);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    padding: 0 0 5px 0;
    background-color: #ffffff;
}
#nav_menu .navbar-nav>li>a:hover, 
#nav_menu .navbar-nav>li>a:focus {
	color: #6F8227;
	transition: .3s;
    background-size: 100% 3px;
    background-color: transparent;
}
#nav_menu .navbar-nav>li>a::after {
    content: "";
    height: 2px;
    background-color: #000;
}
#nav_menu .nav .mobile-login a:hover,
#nav_menu .nav .mobile-login a:focus {
    background-image: none;
    color: #fff;
    background-color: #6F8227;
}

/*--------- Login modal --------*/
#myModal .modal-content {
    border-radius: 4px;
}
#myModal .modal-dialog {
    max-width: 300px;
    margin: auto;
    margin-top: 15px;
}
#myModal .modal-header {
    background: #383759;
    color: #fff;
    font-weight: 600;
    text-align: center;    
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
#myModal .close {
    color: #fff;
    text-shadow: none;;
    opacity: .8;
}
#myModal .close:hover, .login-modal .close:focus {
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
}
#myModal .modal-title {
    font-size: 24px;
    padding: 0;
    color: #fff;
}
#myModal .modal-title {
    font-size: 18px;
    text-align: center;
    color: #fff;
}
#myModal .modal-body form>div:nth-child(3) {
    margin-bottom: 10px;
}
#myModal .modal-body {
    font-size: 16px;
    text-align: center;
}
#myModal .modal-body div input {
    padding: 5px 8px;
}
#myModal {
    font-size: 15px;
}
#myModal input {
    padding: 5px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #D6DAE8;
    width: 200px;
}
#myModal input:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #6F8227;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
#myModal a {
    text-decoration: underline;
    border: none;
    color: #4B4A79;
    font-weight: 400;
}
#myModal a:hover, #login a:focus {
    color: #6F8227;
    outline: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#myModal input[type="submit"] {
    background-color: #4B4A79;
    color: #fff;
    border: 1px solid #4B4A79;
    border-radius: 2px;
    padding: 6px 8px 5px;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
#myModal input[type="submit"]:hover, #myModal input[type="submit"]:focus {
    background-color: #6F8227;
    border-color: #6F8227;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    outline: none;
}

/*--------------------------------------------------------
					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-inner>.item>a>img, .carousel-inner>.item>img {
    width: 100%;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover, .carousel-control:focus {
	z-index: 101;
    color: transparent;
    top: 32%;
    background-size: auto;
}
.carousel-control.left {
    background-image: url(../images/left-arrow.svg);
    left: 20px;
    background-size: auto;

}
.carousel-control.right {
    background-image: url(../images/right-arrow.svg);
    right: 20px;
}
.carousel-control:hover {
    opacity: 1;
    background-size: auto;
}
.carousel-control {
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    z-index: 101;
    width: 50px;
    height: 50px;
    /*margin: auto;*/
    opacity: .75;
}
.carousel-caption { 
    position: relative;
    z-index: 100;
    background-color: #282833;
    padding: 15px 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: inherit;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (max-width: 600px){
	.carousel-caption {
        padding: 15px 0;
    }
    .carousel-control.left, .carousel-control.right {
        top: 20px;
    }
}
.carousel-caption p.caption-text{
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    display: block;
    color: white;
    margin-bottom: 15px;
}
.carousel-caption p.alt-text{
	font-size: 19px;
    color: white;
    margin-bottom: 10px;
}
ol.carousel-indicators {
    display: none;
}
/*----------------End Slideshow------*/

/*--------------------------------------------------------
					News and Events Feeds
--------------------------------------------------------*/
.news-item {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #CFD2D3;
}
.news-item:first-of-type {
    margin: 0;
    padding: 0;
    border: 0;
}
.news-item .date:before {
	content: "";
    background-image: url(../images/calendar-icon.svg);
    height: 15px;
    width: 14px;
    display: inline-block;
    margin-right: 10px;
}
.news-item .date {
    margin: 12px 0 6px;
}
.news-title-link {
    text-decoration: none;
    background-image: linear-gradient(to right, #383759, #383759);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 1.6px;
    padding: 0 0 2px 0;
    color: #383759;
    font-weight: 700;
}
.news-title-link:hover, .news-title-link:focus {
    color: #6F8227;
    text-decoration: none;
    background-image: linear-gradient(to right, #6F8227, #6F8227);
    transition: .3s;
}

/*--------------------------------------------------------
                Custom Styles for the Home Page
--------------------------------------------------------*/
#mycanvas .hidden-row, #mycanvas .hidden-column {
    display: block;
}
#subpage-main {
    margin-top: 40px;
}
iframe#twitter-widget-0 {
    border: 1px solid #DFE4E8 !important;
    border-radius: 3px;
}
.content-wrapper .row {
    margin: 40px -15px 0;
}
.content-wrapper .row.no-margin-top {
    margin-top: 0;
}

#by-the-numbers-content {
    font-size: 26px;
}
#by-the-numbers-content strong {
    font-weight: 700;
    font-size: 130px;
    color: #5D6B0C;
    vertical-align: middle;
}
/*--------------------------------------------------------
				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-wrapper {
    font-size: 17px;
    color: #C7CFD3;
    line-height: 30px;
    margin-top: 80px;
}
.footer-wrapper p {
    margin: 0;
}
.footer-wrapper strong {
    color: #ffffff;
    font-weight: 400;
}
.companyInfo-contactInfo-wrapper {
    background-color: #4B4A79;
    padding: 30px 0;
}
.credits-policy-wrapper {
    background-color: #383759;
    padding: 30px 0;
}
.footer-wrapper a {
    color: #ffffff;
    text-decoration: none;
    background-image: linear-gradient(to right, #ffffff, #ffffff);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 1.6px;
    padding: 0 0 2px 0;
}
.footer-wrapper a:hover,
.footer-wrapper a:focus {
    background-size: 100% 2px;
    transition: .3s;
}
.companyInfo-contactInfo-wrapper p:first-of-type {
    float: left;
    margin-right: 30px;
    border-right: 1px solid #5F5F93;
    padding-right: 30px;
}
.social-media-icons ul, .policy {
    padding: 0;
    margin: 0;
    text-align: right;
}
.social-media-icons ul li {
    list-style-type: none;
    display: inline-block;
    height: 35px;
    margin-left: 10px;
}
.social-media-icons ul li a {
    background: none;
    display: inline-block;
    height: 35px;
}
.social-media-icons ul li:nth-of-type(1) a:before {
	content: "";
    background-image: url(../images/twitter-icon.svg);
    height: 35px;
    width: 35px;
    display: inline-block;
}
.social-media-icons ul li:nth-of-type(2) a:before {
	content: "";
    background-image: url(../images/facebook-icon.svg);
    height: 35px;
    width: 35px;
    display: inline-block;
}
.social-media-icons ul li:nth-of-type(3) a:before {
	content: "";
    background-image: url(../images/linkedin-icon.svg);
    height: 35px;
    width: 35px;
    display: inline-block;
}
.social-media-icons ul li:nth-of-type(4) a:before {
	content: "";
    background-image: url(../images/instagram-icon.svg);
    height: 35px;
    width: 35px;
    display: inline-block;
}
/*--------------------------------------------------------
                        Mobile Menu
--------------------------------------------------------*/
#mobile-menu .search-wrapper .search-input {
    width: 100%;
}
#mobile-menu .search-wrapper {
    margin-top: 40px;
    margin-bottom: 10px;
}
#mobile-menu .caret {
    float: right;
    margin-top: 10px;
    bottom: 0;
}
#mobile-menu .mobile-login {
    margin-top: 20px;
}
#mobileMenuWrapper #mobile-menu .mobile-login a {
    width: auto;
}
#mobileMenuWrapper .mDropdown a:hover, #mobileMenuWrapper .mDropdown a:focus {
    color: #677A24;
    border-color: #6F8227;
}
/*--------------------------------------------------------
                        Media Queries
--------------------------------------------------------*/
@media (max-width: 992px) {
    .social-media-icons ul {
        text-align: center;
        margin-top: 30px;
    }
    #by-the-numbers-content strong {
        font-size: 120px;
    }
}
@media (max-width: 767px) {
    .search-menu-wrapper .search-wrapper {
        display: none;
    }
    .content-wrapper .row .column ~ .column.col-xs-12 {
        margin-top: 80px;
    }
    #by-the-numbers-content strong {
        font-size: 80px;
        display: block;
    }
    .header-buttons-wrapper ul li a {
        padding: 8px 15px;
    }
    #by-the-numbers-content {
        text-align: center;
    }
    .credits, .policy {
        text-align: center;
    }
    .companyInfo-contactInfo-wrapper p:first-of-type {
        float: none;
        border: none;
        margin: 0;
        padding: 0;
    }
    .companyInfo-contactInfo-wrapper p {
        text-align: center;  
    }
}
@media (max-width: 600px) {
    .header-buttons-wrapper ul li, .header-buttons-wrapper ul li:last-of-type {
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }
    .header-buttons-wrapper ul li a {
        display: block;
    }
}
@media (max-width: 480px) {
    .content-wrapper .row .column {
        width: 100%;
    }
    #mobile-menu-col .mobile-login {
        display: none;
    }
}

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