/*--------------------------------------------------
	Uncomment the style below for hoverable menus
----------------------------------------------------*/

.NP .dropdown:hover>.dropdown-menu,
.NP .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


/*uncomment for hoverable menus*/


/*------------------------2nd Tier Nav*/

#nav_menu .nav li {
    position: relative;
    float: none;
    list-style-type: none;
    display: block;
}

.NP .open>.dropdown-menu {
    display: block;
}

.men-level-1 {
    top: 0px;
}

#mobileMenuWrapper #mobile-menu a.mToggle:after {
    content: "+";
    display: inline-block;
    float: right;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -7px;
    margin-bottom: -10px;
    padding-left: 15px;
    height: 37px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

#mobileMenuWrapper #mobile-menu a .caret {
    display: none;
}


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

.NP .navbar-nav>li>.dropdown-menu {
    background-color: #283e4e;
    padding: 0;
    top: -1px;
    left: 289px;
    border-radius: 0;
}

.NP .navbar-nav>li>.dropdown-menu .dropdown-menu {
    top: -3px;
    border-radius: 0;
    background-color: #283e4e;
    padding: 0;
}

#nav_menu .navbar-nav>li.dropdown ul li a {
    padding: 10px 20px !important;
}

#nav_menu .navbar-nav li:hover:after {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    right: 0;
    top: calc( 50% - 10px);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right-width: 10px;
    border-right-style: solid;
    -moz-transform: scale(0.9999);
}

#nav_menu .navbar-nav li:hover:after {
    border-left-color: rgba(255, 255, 255, 0.18);
}

#nav_menu .navbar-nav li:hover:after {
    border-right-color: rgba(255, 255, 255, 0.18);
}


/*---------------------------------------------
		Mobile Menu
---------------------------------------------*/

#mobile-menu-col {
    float: left;
    margin-top: -94px;
    margin-left: 15px;
}


/*-----------------toggle--------------------*/

button#mobile-toggle {
    width: 37px;
    height: 37px;
    display: none;
    position: absolute;
    right: 15px;
    bottom: 30px;
    border: 2px solid #002857;
    border-radius: 4px;
    padding: 8px 5px;
    background-color: white;
    box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

@media (max-width: 990px) {
    button#mobile-toggle {
        display: inline-block;
    }
}

button#mobile-toggle svg * {
    fill: #002857;
}


/*-----------end--toggle---------------------*/

#mobile-menu>li#triggerClose {
    display: inline;
    float: right;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 15px;
}

#mobile-menu>li#mobile-logo {
    position: relative;
    left: -15px;
    top: -10px;
}

#mobile-menu>li#mobile-logo>a {
    display: inline;
    max-width: 80%;
}

#mobile-menu>li #q {
    width: 100%;
}

#mobile-menu>li>a {
    min-height: 32px;
    border-radius: 3px;
    background-color: transparent;
    padding: 7px 15px 9px 20px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    -webkit-transition: color .25s;
    transition: color .25s;
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
    border-top: rgba(255, 255, 255, 0.12) solid 1px;
    border-radius: 0;
}

#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: #000031;
    /*border-right: 2px solid #014C8D;*/
    /* 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: 0;
}


/* 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 li a {
    display: inline-block;
    width: 100%;
}


/* dropdown only */

#mobile-menu>li .mDropdown a {
    min-height: 32px;
    border-radius: 3px;
    background-color: transparent;
    padding: 7px 15px 9px 35px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    -webkit-transition: color .25s;
    transition: color .25s;
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
    border-top: rgba(255, 255, 255, 0.12) solid 1px;
    border-radius: 0;
}

#mobile-menu>li .mDropdown .mDropdown a {
    padding-left: 50px;
}

#mobile-menu>li>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>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
}