/* *,*/
#mp-menu *:after,
#mp-menu *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, .container, .scroller {
	height: 100%;
}

.scroller {
	overflow-y: scroll;
}

.scroller,
.scroller-inner {
	position: relative;
}

.container {
	position: relative;
	overflow: hidden;
	/*background: #34495e;*/
	max-height: 100%
}

/*.menu-trigger {
	position: relative;
	padding-left: 60px;
	font-size: 0.9em;
}

.menu-trigger:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #fff;
	box-shadow: 0 6px #34495e, 0 12px #fff, 0 18px #34495e, 0 24px #fff;
	content: '';
}*/

.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
}

.mp-menu {
	position: absolute; /* we can't use fixed here :( */
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
height: 100%;
	/*-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);*/
}
.IElte9 .mp-menu {display: none}  /* Don't show responsive nav in ugly IEs */

.mp-level {
	position: absolute;
	/*top: 0;*/
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: translate3d(-250%, 0, 0);
	-moz-transform: translate3d(-250%, 0, 0);
	transform: translate3d(-250%, 0, 0);
}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* content style */
.mp-menu ul {margin: 0;
padding: 0;
list-style: none;
position: relative}
.mp-menu  > .mp-level > ul {top: 106px;}

.mp-menu h2 {
	margin: 0;
	padding: 1em;
	color: rgba(0,0,0,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}
.IE .mp-menu h2 {	text-shadow: none}

.mp-menu.mp-overlap h2::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {  background-color: #78be20;
  border-bottom: 1px solid #333333;
  color: #ffffff;
  background-image: none;
  padding-left: 3em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  font-family: 'GloberSemibold';
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li > a { color: #ffffff;
	display: block; 
	padding: 0.26em 1em 0.05em 2.2em;
	outline: none;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 2.3em;
	/*box-shadow: inset 0 -1px rgba(0,0,0,0.2);*/
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s; width: /*232px*/ 100%;
}
.IE .mp-menu ul li > a {	text-shadow: none}

.mp-menu ul li::before {
	position: absolute;
	left: 10px;
	z-index: -1;
	color: #ffffff ; /*rgba(0,0,0,0.2);*/
	line-height: 3.5; margin-top: -2px;
}

/*.mp-level > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}*/

.mp-menu ul li a:hover, .mp-menu ul li a:focus/*,
.mp-level > ul > li:first-child > a:hover*/ {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0); text-decoration: none;
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

/*.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0), inset 0 1px rgba(0,0,0,0);
}*/ /* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

.mp-back {
	background: rgba(0,0,0,0.1);
	outline: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: .7em 1em;
	position: relative;
	box-shadow: inset 0 1px rgba(0,0,0,0.2);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.mp-back::after {
	/*font-family: 'linecons';
	content: "\e037";*/
	 /*    content: '\f500';  solid arrow */
		content: '\f432';   /* line arrow */
    font-family: "Genericons";
	position: absolute;
	right: 10px;
	font-size: 2.2em;
    font-weight: 300;
	color: #ffffff /*rgba(0,0,0,0.3)*/;
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 300px;
}
.IElte9 .mp-pusher {	padding-left: 0px;}  /* No, we won't show it at all */

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {   border-bottom: 1px solid #000000;
	display: block;
}

/* Added to give ability to GO to a page that has subnav, OR just to drill down into that level in the navigation */
.mp-menu ul li {
  /*border-bottom: 1px solid  #333333; */
  clear: both;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  padding-bottom: 10px;
  }
.mp-menu ul li:hover, .mp-menu ul li:focus, .mp-menu ul li:active { /*background-color: #01652f*/}
.mp-menu ul li a:hover, .mp-menu ul li a:focus, .mp-menu ul li a:active {/* background-color: #00843d*/}   /* link w/o an arrow */
.mp-menu ul li a.lp:hover, .mp-menu ul li a.lp:focus, .mp-menu ul li a.lp:active, .mp-menu ul li a.down:hover, .mp-menu ul li a.down:focus, .mp-menu ul li a.down:active, .mp-menu ul li a.lp.hover_effect, .mp-menu ul li a.down.hover_effect { /*background-color: #00843d*/}   

#mp-menu li a.down {color: transparent;float: left; padding: 0px 27px 50px 9px;
 max-height: 16px; max-width: 19px;text-shadow: none; margin-top: -9px; margin-bottom: 0;} 
#mp-menu li a.lp {
  /*border-left: 1px solid  #333333;*/
  line-height: 1.1em;
  float: right;
  padding-left: 12px;
  margin-bottom: 0px;
  padding-bottom: 6px;
  padding-top: 6px;
  width: 100%;
}
#mp-menu li a:not(.lp):not(.down) {line-height: 1.1em;padding-top: 8px;padding-bottom: 8px;} 

#mp-menu li > a.down::before {
    color: #ffffff;
    content: "\e032";
    font-family: "linecons";
    font-size: 15px;
    top: 0;
    position: relative;
}

.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;        
}

@media screen and (min-width: 650px) {
	.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-250%, 0, 0);
	-moz-transform: translate3d(-250%, 0, 0);
	transform: translate3d(-250%, 0, 0); }
}