@charset "UTF-8";

/* WSTW HOOFDMENU CSS */

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

/* Algemeen
********************************************************************************/
div#navcontainer {
	display: block;
	width: 231px;
	margin: 0px;
	font-size: 14px;
	font-weight: normal;
	line-height: 23px;
	padding-top: 20px;
	padding-bottom: 20px;
}

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: 203px;
	color: #fff;
	text-align: left;
	text-decoration: none;
	border-bottom: 1px dotted #333;
	padding: 7px 5px 7px 23px;
	line-height: 17px;
}

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

ul#navlist li ul#subnavlist li a {
	margin: 0px;
	font-weight: normal;
	width: 201px;
	background: url(none);
	font-size: 14px;
	color: #444;
	border-bottom: 1px dotted #f1f2f2;
	padding: 2px 5px 2px 25px;
}

ul#navlist li ul#subnavlist {
	background: #f1f2f2;
	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;
	font-weight: normal;
	color: #CCCCCC;
}

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

ul#navlist li ul#subnavlist li a:hover {
	font-weight: normal;
	border-bottom: 1px dotted #333;
	background: url(none);
	text-decoration: none;
}

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

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

ul#navlist li#active a {
	font-weight: bold;
	color: #fff;
	background: url(../img/img_algemeen/nav_pijltje.jpg) no-repeat 0.4em 0.7em;
}

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

ul#navlist li ul#subnavlist li#subactive a {
	font-weight: bold;
	color: #4f94b1;
	border-bottom: 1px dotted #f1f2f2;
	background: url(none);
}

/* 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_algemeen/nav_pijltje.jpg) no-repeat 0.4em 0.7em;
	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;
	border-bottom: 1px dotted #333;
}

