#nav {
	margin: 0;
	padding: 2px 1px 0;
	line-height: 100%;
}
#nav li {
	margin: 0 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	z-index: 99;
	list-style: none;
}
#nav li a img { margin: -3px 3px -3px -3px; }

/* main level link */
#nav a {
	font-weight: bold;
	color: #000;
	text-decoration: none;
	display: block;
	padding:  10px 16px;
	margin: 0;

	-webkit-border-radius: 0.7em;
	-moz-border-radius: 0.7em;
}
#nav a:hover {
	background: #000;
	color: #fff;
}

/* main level link hover */
#nav .actief a, #nav li:hover > a {
	background-color: #1f1f1f;
	color: #FFF;
	border-top: solid 1px #f8f8f8;
	text-shadow: 0 1px 0 rgba(0,0,0, 1);
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #FFF;
	
	text-shadow: 0 1px 0 rgba(0,0,0, 1);

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #510805 url('https://street-maffia.be/afbeeldingen/layout/muisover.png') no-repeat right center !important;
	color: #fff !important;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;

	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	background: #0d0d0d;
	border: solid 1px #000;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul li a img { margin-left: 10px; }

#nav ul a {
	font-weight: normal;
	text-shadow: 0 1px 0 #fff;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;

	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;

	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	background: url('https://street-maffia.be/afbeeldingen/layout/backgroundhover.png') repeat-x 0 bottom;
}

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}