/* -- HIDE NORMAL NAVIGATION -- */
.normalNavigationContainer {
	display: none;
}
/* -- SHOW MOBILE NAVIGATION -- */
.mobileNavigationContainer {
	display: block;
	/* show menu icon*/
}
/* -- MOBILE NAVIGATION STYLES -- */

/* -- MENU ICON -- */
.mobileNavigationMenuButton {
	cursor: pointer;
	display: none;
	/* toggle visibility */
	font-weight:400;
	margin: 1em 0 .5em;

	position: relative;
}
/* -- DROPDOWN -- */
.mobileNavigationRoot.dropdown {
	clear: both;
	display: block;
	overflow: hidden;
	/* Hide overflowing elements */
	z-index: 9999;
	width: 100%;
	margin: 0;
	padding: 0;
	/* Padding of the Area */
}
/* -- MAIN NAVIGATION -- */
.navigationElement {
	width: 100%;
}
.mobileNavigationContainer ul {
	margin: 0;
	padding: 0;
}
.mobileNavigationContainer ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.mobileNavigationContainer ul li.first {
}
.mobileNavigationContainer ul li a {
	padding: .6em 1em;
	display: block;
	text-decoration: none;
}
.mobileNavigationContainer ul li a:hover {
}
.mobileNavigationContainer ul li a.open {
}
/* SUBNAV */
.navigationSubNavigation .navigationElement a{
	font-size:.9em;
	padding: .6em 1em .6em 2em;
}
.navigationSubNavigation .navigationElement a.open{
	border: none;
}
/* -- MOBILE OVER -- */
.mobileNavigationRoot .mobileOver {
	display: none;
}