/*this is the css for the vertical version*/
.vertical ul{
	list-style-type: none;
	padding: 0;
	width: 202px;
	margin: 0;
	position: relative;
}
.vertical li a{
	margin-left: 12px;
	display: block;
	width: 184px;
	text-decoration: none;
	height: 1em;
	padding: .1em 1px;
	border: 0px;
}
.vertical li{
	position: relative;
	border-bottom: 1px solid transparent;
	margin-bottom: 1px;
} 
.vertical li:first-child>a{
	border-top: 0px solid;
}
.vertical a.first{
	border-top: 0px solid;
}

/* Positionering uitklapmenu */
.vertical li ul{
    background-color: #29385E;
	position: absolute;
	top: 0px;
	left: 188px;
	width: 280px;
	height: 25px;
}
.vertical li ul li a{
	width: 260px;
}
.vertical.left ul ul ul,.vertical .left ul{
    left: -188px;
	width: 280px;
}

/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
.mlmenu li ul{
	display: none;
}
.mlmenu li:hover>ul{
	display: block;
}
/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
.accessible li ul{
	display: block;
}

/*Code to show an element has a child*/
.mlmenu.plus li a:first-child:not(:last-child):after{
	content: '+';
}
.plus a span{
	padding-left: .5em;
}
.noshow{
	visibility: hidden;
}

/*colors for menu*/
.blackwhite li a{
    padding-top: 5px;
	background-color: #29385E;
	color: white;
	border-color: #445DA3;
	font-size: 11px;
	height: 17px;
}
.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
	padding-top: 5px;
    background-color: #445DA3;
	color: white;		
	border-color: #445DA3;
	font-size: 11px;
	height: 17px;
}
.blackwhite li:first-child>a:hover{
	padding-top: 5px;
    background-color: #445DA3;
	color: white;
	border-color: #445DA3;
	font-size: 11px;
	height: 17px;
}
.blackwhite ul{
	border-color: #445DA3;
}
