/* 

Top Bar Background: #1c1c1c --- Border: #2b2b2b

Section Background: #1c1c1c --- Hover: #2b2b2b  --- Border: #2b2b2b

Arrow Backgroud: #353535 --- Hover: #3d3d3d 

*/

/* This is required for the CSS transitions to not cause empty whitespace on the screen */

body {
	overflow-x: hidden;
}
/* Main div container on the control for opening and closing the menu as well as navigating "back" */
.menu-trigger {
	position: relative;
	padding-left: 15px;
	font-size: 0.9em;
	display: block;
	cursor: pointer;
	background-color: #1c1c1c;
	border-top: 1px solid #2b2b2b;
	border-bottom: 1px solid #2b2b2b;
	height: 40px;
	padding-top: 0px;
	padding-bottom: 10px;
	line-height: 12px;
	text-align: left;
}
/* This is the label class applied to divs within the main div container */

.menu-trigger-label {
	position: absolute;
	top: 22%;
	left: 100px;
	display: inline-block;
	line-height: 28px;
	text-decoration: none;
	color: #FFF;
	font-size: 16px;
	padding-top: 0px;
	/*padding: 14px 14px 0px;*/
	font-family: inherit;
	font-weight: 600;
	letter-spacing: 0.015em;
}
/* Hides the xcsstitle div generated by xcss */
.xcsstitle {
	display: none;
}
/* This applies to the 1st section level display */
.parent {
	background-color: #1c1c1c;
	position: relative;
}
/* This applies to all links within the menu */
.parent a {
	display: block;
	/*padding: 0.7em 31% 0.7em 1.8em;*/
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 6px 30px 6px 20px;
	font-family: inherit;
	letter-spacing: 0.015em;
	vertical-align: middle;
	border-bottom: 1px solid #2b2b2b;
	text-align: left;
	color: #FFF;
}
.parent a:hover {
	background-color: #2b2b2b;
}
/* CATEGORY LEVEL */
.dropdown ul li {
	position: relative;
	display: block;
	text-align: left;
	background-color: #1c1c1c;
}
/* PAGE LEVEL */
.dropdown ul li ul li {
	position: relative;
	text-align: left;
	background-color: #1c1c1c;
}
/* div container control for expanding into the next tier for a certain Section/Category. */
.mp-arrow {
	position: absolute;
	display: inline-block;
	width: 25%;
	background-color: #353535;
	top: 0px;
	bottom: 0px;
	right: 0px;
	cursor: pointer;
	/*box-shadow: inset 0 -1px rgba(0,0,0,0.2);*/
	border-bottom: 1px solid #2b2b2b;/*border-left: 1px solid #FFF;*/
}
.mp-arrow:hover {
	background-color: #3d3d3d;
}
/* div element which makes up the arrow by setting a border top/right then rotating 45degrees with css */
.mp-arrow-inner {
	display: inline-block;
	font-style: normal;
	position: absolute;
	top: 14px;
	right: 45%;
	width: 0.67em;
	height: 0.7em;
	border-right: 0.2em solid #EFEFEF;
	border-top: 0.2em solid #EFEFEF;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
	-o-transform: rotate3d(0, 0, 1, 45deg);
	-ms-transform: rotate3d(0, 0, 1, 45deg);
}
/*********************************************************************
Technical CSS for how the trigger lines to arrow looks and behaves. 
Tinkering anything beyond this point may void warranty ;)
************************************************************************/

.menu-lines-button {
	padding: 1.0rem 1rem 1.5rem 1rem;
	transition: .2s;
	cursor: pointer;
	user-select: none;
	border-radius: 0.57143rem;
	display: inline-block;
}
.menu-lines-button:hover {
	opacity: 1;
}
.menu-lines-button:active {
	transition: 0;
}
/* main line */
.menu-lines {
	display: inline-block;
	width: 3rem;
	height: 0.25rem;
	background: #FFF;
	border-radius: 0.28571rem;
	transition: 0.2s;
	position: relative;/*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);*/
}
/* joined styles for top and bottom lines */
.menu-lines:before, .menu-lines:after {
	display: inline-block;
	width: 3rem;
	height: 0.25rem;
	background: #FFF;
	border-radius: 0.28571rem;
	transition: 0.2s;
	position: absolute;
	left: 0;
	content: '';
	-webkit-transform-origin: 0.28571rem center;
	transform-origin: 0.28571rem center;/*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);*/
}
.menu-lines:before {
	top: 0.8rem;
}
.menu-lines:after {
	top: -0.85rem;
}
.menu-lines-button.close {
	-webkit-transform: scale3d(0.8, 0.8, 0.8);
	transform: scale3d(0.8, 0.8, 0.8);
}
.menu-lines-button.arrow.close .menu-lines:before {
	top: 0.1rem;
	width: 1.9rem;
	left: -0.15rem;
}
.menu-lines-button.arrow.close .menu-lines:after {
	top: -0.1rem;
	width: 1.9rem;
	left: -0.15rem;
}
.menu-lines-button.arrow.close .menu-lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
	-o-transform: rotate3d(0, 0, 1, 40deg);
	-ms-transform: rotate3d(0, 0, 1, 40deg);
}
.menu-lines-button.arrow.close .menu-lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
	-o-transform: rotate3d(0, 0, 1, -40deg);
	-ms-transform: rotate3d(0, 0, 1, -40deg);
}
/*********************************************************************
Technical CSS for governing how the menu works and behaves. 
Tinkering anything beyond this point may void warranty ;)
************************************************************************/
.mp-pusher {
	position: relative;
}
.mp-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	text-align: left;
}
.mp-level {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
/* overlays for pusher and for level that gets covered */
.mp-pusher, .mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.2s;
}
/* 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;
}