@charset "utf-8";
.navigatie{
	width: 200px; /*width of accordion menu*/
	float: left;
}
.navigatie .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #033151; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	background-color: #FFFFFF;
	padding: 7px 0 4px 20px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CAE6F2;
	font-family: "HelveticaNeue LightExt", "Helvetica 45 Light", Helvetica, Geneva, Arial, Verdana, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	text-decoration: none;
	height: 20px;
	width: 180px;
	display:block;
	letter-spacing: 1px;
}
.navigatie .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #033151; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	background-color: #CAE6F2;
	padding: 7px 0 4px 20px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CAE6F2;
	font-family: "HelveticaNeue LightExt", "Helvetica 45 Light", Helvetica, Geneva, Arial, Verdana, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	text-decoration: none;
	height: 20px;
	width: 180px;
	display:block;
	letter-spacing: 1px;
}
.navigatie .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-color: #FFFFFF;
	border: none;
	height: 32px;
}
.navigatie ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.navigatie ul li{
	padding-bottom: 0px; /*bottom spacing between menu items*/
}
.navigatie ul li a{
	background-color: #CAE6F2; /*custom bullet list image*/
	display: block;
	padding: 5px 0 5px 30px;
	text-decoration: none;
	border-bottom: 1px solid #FFFFFF;
	font-size: 10px;
	height: 15px;
	font-family: "HelveticaNeue LightExt", "Helvetica 45 Light", Helvetica, Geneva, Arial, Verdana, sans-serif;
	color: #033151;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.navigatie ul li a:hover{ /*hover state CSS*/
	background-color: #033151; /*custom bullet list image*/
	display: block;
	padding: 5px 0 5px 30px;
	text-decoration: none;
	border-bottom: 1px solid #FFFFFF;
	font-size: 10px;
	height: 15px;
	font-family: "HelveticaNeue LightExt", "Helvetica 45 Light", Helvetica, Geneva, Arial, Verdana, sans-serif;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 1px;
}