ul.nav, .nav ul{
/*Remove all spacings from the list items*/
	margin: 1px;
	padding: 0px;
	cursor: default;
	list-style-type: none;
}

ul.nav {
/*breedte linkerbalken */
	width: 145px;
/*Optional, to make the navigation bar positions on the left of the content*/
	float: left;
	margin-right: 0px;
}



ul.nav li{
	margin: 0px;
	padding: 2px;
}

ul.nav li ul{
/*Make the sub list items invisible*/
	display: none;
	position: relative;
	width: 170px;
	/*positie linkerkant uitklapbalk */
	left: 0px;
	margin-top: 0px;
	margin-left: 0px;
}

ul.nav li:hover ul{
/*When hovered, make them appear*/
	display : block;
	}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 2px;
}

/*** Menu styles (customizable) ***/

/* kleur van de achtergrond cel en tekst zonder hover*/
ul.nav, .nav ul, .nav ul li a{
	background-color: #e69e00;
	color: #000000;
	}

/* kleur van de tekst van de achtergrondcel ten tekst met hover*/
ul.nav li:hover, .nav ul li a:hover{
	background-color: #f0c566;
	color: #000000;
	}

/* kleur van de achtergrond cel bij hover*/
ul.nav li:active, .nav ul li a:active{
	background-color: #f0c566;
	color: #ffffff;
	}

/* kleur van de cellijn */
ul{
	border: px solid #f0c566;

	}

.nav a{
	text-decoration: none;
}
