* {
	text-decoration: none;
}

#nav {
	/*position: relative;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #8b8b8d;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 100%;

margin-top: 10px;
padding:0
}

#nav ul {
	display: none;
	width: 100%;
	list-style: none;
	padding: 0px;
}

#nav li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	border-right: 2px dashed #fff;
	width: 100%;
	
}

#nav a {
	width: 10px;
    line-height: 10px;
    color: #fff;
}

#nav ul li a {
	display: block;
	padding: 10px;
	background-color: #8b8b8d;
	text-decoration: none;
	width: 100%;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

#nav ul li a:hover {
	color: #611440;
}

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

#nav ul li ul li a {
	padding-left: 1.5em;
}

#nav ul li ul li ul li a {
	padding-left: 3.125em;
}

#nav input.trigger {
	position: absolute;
	top: -9999px;
	left: -9999px;
}

#nav input.trigger:checked~ul,
#nav input.trigger:checked~ul li ul {
	display: block !important;
}
@media (max-width: 768px){	#nav li {border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;}
}

@media (min-width: 48em) {
	#nav input.trigger:checked~ul,
	#nav input.trigger:checked~ul li ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
}



#nav label {
	position: relative;
	display: block;
	min-height: 2em;
	padding: .45em;
	font-size: 1.1em;
	margin: 0;
	cursor: pointer;
	background: #8b8b8d;
	line-height: 2em;
	color: #ffffff;
}

#nav label:after {
	position: absolute;
	right: 1em;
	top: .2em;
	content: "\2261";
	font-size: 1.8em;
	color: white;
}

@media (min-width: 48em) {
	#nav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}


	#nav ul li {
		position: relative;
		text-align: center;
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		-webkit-flex: 1;
	}
	#nav ul li ul {
		display: none !important;
		position: absolute;
		top: 3.0625em;
		left: 0;
		display: block;
		width: 12.5em;
		z-index: 200;
	}
	#nav ul li ul li {
		text-align: left;
	}
	#nav ul li ul li ul {
		z-index: 300;
		top: 0px;
		left: 12.4em;
	}
	#nav ul li ul li ul li a {
		padding-left: 30px !important;
	}
	#nav ul li:hover>ul {
		display: block !important;
	}
	#nav label {
		display: none;
	}
}