.menubar{
	position:fixed;
	height:99px;
	width:100%;
	border-bottom:1px solid rgba(255,255,255,.1);
	z-index:15;
	-webkit-transition:all .7s;
	-moz-transition:all .7s;
	transition:	all .7s;
	margin: 0;
}
.menubardown{
	position:fixed;
	height:79px;
	width:100%;
	background-color:#fff;
	box-shadow: 0 2px 7px rgba(0,0,0,.3);
	z-index:15;
	-webkit-transition:all .7s;
	-moz-transition:all .7s;
	transition:	all .7s;
}
.menubardown .logo{
	background-image:url(../images/logo.png);
}
.toggleMenu {
    display:  none;
	margin:19px 45px 0 0;
    padding: 15px;
}
.toggleMenu .bar{
	height:4px;
	width:27px;
	margin:0 0 4px;
	background-color:#fff;
	border-radius:3px;
}
.menubardown .toggleMenu .bar{
	background-color:#000;
}
.toggleMenu:hover .bar{
	background-color:#fe0032;
}
.nav {
    list-style: none;
     *zoom: 1;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav .mlink {
	display:inline-block;
}
.menu{
	margin:0 90px 0 0;
	float:right;
}
.nav .mlink a {
    display: block;
	font-size:18px;
	padding:38px 15px 39px;
	text-shadow:0 1px 3px rgba(0,0,0,.3);
	font-weight:300;
	color:#fff;
	text-transform:uppercase;
}
.menubardown .nav .mlink a {
	color:#000;
	padding:28px 15px 29px;	
}
.nav .mlink a:hover {
	background: #fe0032;
	color: #fff;
}
@media screen and (max-width: 1200px) {
	.menu{margin:0 45px 0 0;}
}
@media screen and (max-width: 900px) {
    .active {
        display: block;
    }
    .nav .mlink {
		width:100%;
    }
	.menu {
        width: 100%;
		position:absolute;
		text-align:right;
    }
	.nav .mlink a, .menubardown .nav .mlink a{
		background-color:#333;
		padding:18px 54px 18px 0;
		color:#fff;
	}
	
	.nav .mlink a:hover {
		background-color:#fe0032;
	}
    .nav {
        display: block;
        width: 100%;
    }
}