nav{
	display: block;
	text-align:center;
	transition: all 0.5s ease;
	background-image: -ms-linear-gradient(top, #071D42 0%, #00A3EF 100%);
	background-image: -moz-linear-gradient(top, #071D42 0%, #00A3EF 100%);
	background-image: -o-linear-gradient(top, #071D42 0%, #00A3EF 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #071D42), color-stop(1, #00A3EF));
	background-image: -webkit-linear-gradient(top, #071D42 0%, #00A3EF 100%);
	background-image: linear-gradient(to bottom, #071D42 0%, #00A3EF 100%);
	padding: 15px;

}
.fixed{
	position:fixed;
	left:0;
	right:0;
	top:0;
	z-index:9999;
	box-shadow:0px 0px 15px #000;
	}


/* Main Menu */
.mainmenu{
	font-family: 'Roboto', sans-serif;
	display: inline-block;
	cursor:pointer;
	outline-color:#ed1c24;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: normal;
	outline:none;
}

.mainmenu hr{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-bottom-color: #999;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.mainmenu:first-child a{
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #053d6b;
	}

.mainmenu a{
	text-align:left;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #053d6b;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-left:-3px;
}
.mainmenu a:hover{
	background-color:#053d6b;
	
}

/* Sub Menu */
.submenu{
	opacity:0;
	position: absolute;
	visibility:hidden;
	transition: all 0.2s ease;
	z-index: 99999;
	background-image: url(arrow.png);
	background-repeat: no-repeat;
	background-position: 40px top;
	background-color: #0c8ac9;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #f4001b;
	box-shadow: 0px 0px 5px #000;
	margin-top:10px;
	padding: 15px 10px;
	text-align:left;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #f4001b;
}
.submenu span, .submenu small{
	padding-bottom:5px;
	display:block;
}
.submenu a{
	display: block; /*change to inline-block for multi column*/
	border-radius:0px;
	padding: 5px 10px;
	border:none;

}

.submenu a:hover{
	background-color:#053d6b;}
/*on rollover */
.mainmenu:focus .submenu{
	opacity:1;
	visibility:visible;
}




.toggle{
	display:block;
	outline:none;
	}	

@media only screen and (max-width: 940px) {

.toggle:before{
	content:url(nav.png);
	cursor:pointer;
	}
.mobile_wrap{
	z-index: 99999;
	position:absolute;
	top:-1000px;
	box-shadow: 0px 0px 5px #666666;
	text-align:center;
	transition: all 0.2s ease;
	padding: 10px;
	left:0;
	right:0;
	background-color: #053c6a;
}
.mainmenu{
	float:left;
	width:50%;
}
.mainmenu a{
	display:block;
	padding:5px 25px;
}
.submenu{
	left:0;
	right:0;
	margin-top:0px;
	background-position: center top;
}

.toggle:focus .mobile_wrap, .toggle:hover .mobile_wrap{
	top:auto;
	margin-top:10px;
	}	
}

