/* Button mobile Navi Start */
.btnMobileMenu{
	padding:20px;
	cursor:pointer;
	display: none;
	position: absolute;
	left: 10px;
	top: 80px;
	z-index: 50;
}
.btnMobileMenu .inner{
	position:relative;
	width:26px;
	height:20px;
}
.btnMobileMenu .text{
	float: left;
	text-transform: uppercase;
	font-size: 20px;
	padding-left: 15px;
	position: relative;
}
.btnMobileMenu span.pipe{
	display: block;
	position: absolute;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: #0e4194;
	opacity: 1;
}
.btnMobileMenu span.pipe:nth-child(1) { top: 0px; }
.btnMobileMenu span.pipe:nth-child(2) { top: 8px; }
.btnMobileMenu span.pipe:nth-child(3) { top: 16px; }
/* Button mobile Navi Ende */

/*** Mobile Navi Button ***/
.btnMobileMenu span.pipe,
.btnMobileMenu{
	-o-transition:all ease .3s;
	-ms-transition:all ease .3s;
	-moz-transition:all ease .3s;
	-webkit-transition:all ease .3s;
	transition:all ease .3s;
}
.btnMobileMenu span.pipe{
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}
.btnMobileMenu.open span.pipe{
	background-color:#0e4194;
}
.btnMobileMenu.open span.pipe:nth-child(1){
	top: -3px;
	left: 4px;
	-moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btnMobileMenu.open span.pipe:nth-child(2){
	width: 0%;
	opacity: 0;
}
.btnMobileMenu.open span.pipe:nth-child(3){
	top: 15px;
	left: 4px;
	-moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}