/* HOOFDMENU CSS */

/*******************************************************************************/
/* Vertikaal menu met 1 niveau                                                 */
/*******************************************************************************/

/* Algemeen
********************************************************************************/
div#navcontainer {
	position: absolute;
	top: 338px;
	left: 22px;
	text-align:left;
	display: block;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	font-family: "Trebuchet MS";
}

#navcontainer h2{
	color: #3c3e99;
	font-weight: bold;
	font-size: 16px;
	line-height: 15px;
}

ul#navlist {
	width: 155px;
	padding: 0;
	margin: 0;
}

ul#navlist li {
	list-style-type: none;
	display: block;
	padding-bottom: 3px;
	background: url(../../../img/img_subnav/button_bg.png) no-repeat -0.3em top;
}

/* Text samen met block styles
********************************************************************************/

ul#navlist li a {
display: block;
	padding-left: 25px;
	color: #0580bf;
	margin-left: 1px;
	text-decoration: none;
	font-size: 12px;
	line-height: 23px;
	font-weight: bold;
}

/* HOVER 
********************************************************************************/

/* Text samen met block hover, niveau 1 
********************************************************************************/


ul#navlist li a:hover {
	color: #3c3e99;
}

/* SELECTED 
********************************************************************************/

/* Text samen met block selected styles, niveau 1
********************************************************************************/
ul#navlist li#active {
	background: url(../../../img/img_subnav/button_bg_active.png) no-repeat -0.3em top;
}

ul#navlist li#active a {
	font-weight: bold;
	color: #3c3e99;
}

