@charset "UTF-8";

/* HOOFDMENU CSS */

/*******************************************************************************/
/* Vertikaal expandable menu met 2 niveaus, elk niveau gedraagt zich anders    */
/*******************************************************************************/



/* Algemeen
********************************************************************************/

ul.navlist{
	list-style-type: none;
	width: 200px;
	float:left;
	margin-left: 19px;  
	margin-top: 25px; 
}


/* Text samen met block styles, alle niveaus
********************************************************************************/

ul.navlist li a {
	display: block; /* zorgt ervoor dat de text zich gedraagt als block */
	width: 200px;
	color: #93117e;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
  line-height: 1.82em;
}


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

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

ul.navlist li a:hover {
text-decoration: underline;
}


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

/* Text samen met block selected styles, niveau 1
********************************************************************************/

ul.navlist li a.active {
	font-weight:bold;
}



/* Algemeen
********************************************************************************/

ul.bottomnavlist{
	list-style-type: none;
	padding: 0px;
	width: 200px;
	margin: 12px 0 20px 48px; 
}


/* Text samen met block styles, alle niveaus
********************************************************************************/

ul.bottomnavlist li a {
	display: block; /* zorgt ervoor dat de text zich gedraagt als block */
	width: 200px;
	color: #93117e;
	text-align: left;
	text-decoration: none;
	font-size: 1em;
  line-height: 1.82em;
}


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

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

ul.bottomnavlist li a:hover {
background: url(../img/img_site/nav_bg_hover.png) no-repeat;
}


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

/* Text samen met block selected styles, niveau 1
********************************************************************************/

ul.bottomnavlist li a.active {
	background: url(../img/img_site/nav_bg_active.png) no-repeat;
}




