@charset "UTF-8";

/* TIM DOUWSMA SUBMENU CSS */

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

/* Algemeen
********************************************************************************/
div#navcontainer {
	display: block;
	width: 216px;
	margin: 0px;
	font-weight: normal;
	line-height: 21px;
	font-size: 12px;
}

ul#navlist, ul#navlist li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

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

ul#navlist li a {
	display: block; /* zorgt ervoor dat de text zich gedraagt als block */
	width: 216px;
	color: #5f5c58;
	text-align: left;
	text-decoration: none;
	line-height: 21px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: normal;
}

/* Text samen met block styles, niveau 2
********************************************************************************/

ul#navlist li ul#subnavlist li a {
	margin: 0px;
	width: 216px;
	background: url(none);
	color: #5f5c58;
	font-weight: normal;
	padding-top: 2px;
	padding-bottom: 2px;
}

ul#navlist li ul#subnavlist {
	padding-top: 10px;
	padding-bottom: 10px;
}

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

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

ul#navlist li a:hover {
	background: url(none);
	text-decoration: none;
	color: #429FED;
}

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

ul#navlist li ul#subnavlist li a:hover {
	background: url(none);
	text-decoration: none;
	color: #429FED;
}

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

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

ul#navlist li#active a {
	font-weight: bold;
	color: #9d8054;
	background: url(../img/img_nav/nav_bullet.gif) no-repeat left .4em;
}

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

ul#navlist li ul#subnavlist li#subactive a {
	font-weight: bold;
	color: #9d8054;
	background: url(none);
	text-decoration: underline;
}

/* SELECTED AND HOVER
********************************************************************************/

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

ul#navlist li#active a:hover {
	font-weight: bold;
	background: url(../img/img_nav/nav_bullet.gif) no-repeat left .4em;
	text-decoration: none;
}

/* Text samen met block selected styles hover, niveau 2
********************************************************************************/

ul#navlist li ul#subnavlist li#subactive a:hover {
	font-weight: bold;
	background: url(none);
	text-decoration: none;
}

