
nav{
	display: table-cell;
	vertical-align:middle;
	text-align:right;
	padding-right:5%;
	width:60%;
}
nav ul{
	margin: 0px;
	padding: 0px;

}
/* Main Menu */
nav ul li{
	display:inline-block;
	cursor:pointer;
	outline:none;
	list-style-type: none;
	position:relative;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #fff;

}
nav ul li:last-of-type{border-right-width: 0px;}



nav ul li a{
	text-transform: uppercase;
	display:block;
	font-weight: normal;
	padding: 3px 10px;
	color: #FFF;
	
}
	
.current{
	color: #e2c9fb;
	}
/* Sub Menu */
nav ul li .submenu{
	opacity:0;
	position: absolute;
	background-color:rgba(41,0,82,0.8);
	visibility:hidden;
	overflow:hidden;
	z-index: 99999;
	text-align:left;
	box-shadow:0px 0px 3px #000;
	display:block;
	white-space:nowrap;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	box-sizing:border-box;
}

/*on rollover */
nav ul li:focus .submenu,
nav ul li:hover .submenu{
	visibility:visible;
	opacity:1;
	padding: 15px;
	top:50px;
}








#toggle, #toggle + label{
	display:none;
	vertical-align:middle;
	text-align:right;
	cursor:pointer;
	padding-right:5%;
}

@media only screen and (max-width: 1150px) {
#toggle + label{
	display:table-cell;
}

nav{
	position: fixed;	
	padding-right:0%;
	background-color:rgba(41,0,82,0.9);
	box-shadow:0px 0px 5px #333;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	box-sizing:border-box;
	text-align:center;
	top: -999px;
	left:0;
	right:0;
	display:block;
	width:100%;
	z-index: -1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
#toggle:checked ~ nav {
	top:0px;
	padding-top:50px;
	padding-bottom:20px;
}
nav ul li{
	display:block;
	border-right-width: 0px;
	border-right-style: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
}


nav ul li .submenu{
	position: static;
	display:block;
	max-height:0px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	text-align:center;
}
nav ul li:focus .submenu,
nav ul li:hover .submenu{
	max-height:999px;
	
}



}

