<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------
	Uncomment the style below for hoverable menus
----------------------------------------------------*/
/*.dropdown:hover .dropdown-menu {
    display: block;
}*/ /*uncomment for hoverable menus*/

/*------------------------2nd Tier Nav*/
#nav_menu .nav li {
	position: relative;
	float: left;
	list-style-type: none;
}
.open&gt;.dropdown-menu {
	display: block;
}
.men-level-1{
	top: 0px;
}
/*--------------------End-2nd Tier Nav*/

/*--------------------------------------------------
				MMS Member Icons Menu
----------------------------------------------------*/
@media (min-width: 1200px){
	.nav-tabs li.dropdown { width: 190px; }
}
@media (min-width: 990px) and (max-width: 1200px) {
	.nav-tabs li.dropdown { width: 155px; }
}
@media (min-width: 767px) and (max-width: 990px) {
	.nav-tabs li.dropdown { width: 120px; }
}
/*------------------------------------------------------------------------------------
							Dropdown Menus - full/collapsed
--------------------------------------------------------------------------------------*/

.dropdown-menu li{
	width: 100%;
}


#mobileMenuWrapper {
	/*
	The menu wrapper is the div that surrounds the mobile menu.
	You'll want to make sure this has a background of some sort so the text shows up/doesn't appear over other text
	Setting bottom:0px; is needed to make a long menu scroll-able.
	
	/* REQUIRED */
	position: fixed;
	top:0px;
	bottom: 0px;		/* If having the menu slide in from the top or bottom, comment out this line */
	z-index: 200;
	overflow-y: auto;
	overflow-x: hidden;
	
	/* CHANGEABLE-ISH */
	left: -120%;			/* Change this to left, right, top, or bottom.  You'll also have to make a change in the open state */
	width: 300px;		/* The mobile menu works best with a pre-defined width. Percentages also work great here. */
	
	/* CHANGEABLE */
	background-color: white;
	
	/* Transition - bump */
	transition: left .3s; /* ##DIRECTION-02 */
	-webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); /* older webkit */
	-webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
   	-moz-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
    -o-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
    transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000); 
}
#mobileMenuWrapper.open{
	left: 0px;		/* This is required.  If you changed the direction attribute above, change it here too. */
	bottom: 0px;	/* This line is here for bottom/top slide-ins.  See note on bottom above.*/
}

/* REQUIRED - Dropdown menu item transition states*/
#mobileMenuWrapper .mDropdown {
	display:none;
}
#mobileMenuWrapper .mDropdown.open{
	display: block;
}

/* REQUIRED - Sets the ULs to not have dots, or be spaced in the typical UL fashion. */
#mobileMenuWrapper ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

/* OPTIONAL-ISH - These are the settings for the base menu UL */
#mobileMenuWrapper #mobile-menu{
	overflow: auto;
	padding: 15px 15px 15px 10px;
}
/* OPTIONAL-ISH - This sets each link on its own line fo' sho' */
/*#mobileMenuWrapper a, #mobileMenuWrapper div{
	display: block;
}*/

/* OPTIONAL - The actual A's. Style them as you wish*/
/* Top Level / all*/
#mobileMenuWrapper #mobile-menu a {
	display: inline-block;
	width: 100%;
}

/* dropdown only */
#mobileMenuWrapper .mDropdown a {
	padding: 8px;
	margin-bottom: 10px;
}
#mobile-menu &gt; li &gt; ul {
	background-color: rgba(0,0,0,.04);
}
/*------------------------------------------------------------------------------------
								@Media and Sizes
--------------------------------------------------------------------------------------*/
 /*------ Nav collapse @ Tablet size ------*/
 @media (max-width: 991px) {
	.navbar-header {
	float: none;
    }
    .navbar-toggle {
	display: block;
    }
    .navbar-collapse {
	border-top: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
	display: none!important;
    }
    .navbar-nav {
	float: none!important;
	margin: 7.5px -15px;
    }
    .navbar-nav&gt;li {
	float: none;
    }
    .navbar-nav&gt;li&gt;a {
	padding-top: 10px;
	padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
	display: block!important;
    }
    .collapsing {
	overflow: hidden!important;
    }
}
</pre></body></html>