/*CSS for Simple Tree Menu*/
.treeview{ 
	margin: 0px;
	padding: 0px;
	margin-left: 20px;
	margin-bottom: 10px;
	font-weight:normal;
	color: black;	
	font-size: 13px;
}

.treeview ul{
	margin: 0px;
	padding: 0px;
	font-weight:normal;
}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 10px;
	margin-bottom: 3px;
	font-size: 11px;
	font-family: Arial;
	/*background-color: #efefef;*/
	line-height: 20px;
	border: 1px
}

.treeview .submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: url(../images/arrow_hor.gif) no-repeat left 8px;
	cursor: pointer !important;
	font-weight: bold;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background-color: #efefef;
}

.treeview li.submenu ul li{ /* Style for LI that contains sub lists (other ULs). */
	background-color: #f9f9f9;
	width: 88%;
}

.treeview .submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin-top: 5px;	
	font-size: 11px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: pointer !important;
	list-style-position: inside;
	list-style-image: url("../images/list_streepje.jpg");
}

.treeview a{
	color: black;
	text-decoration: none;
}

.treeview .geselecteerd{
	color: #f8931f;
	font-weight: bold;
}

.treeview .subselec{
	font-weight: bold;
}

ul.treeview li.submenu ul li a:hover{
	color: #f8931f;
	text-decoration: underline;
}

ul.treeview li.submenu ul li a{
	font-weight: 100;
}

.treeview li a{
	font-weight: bold;
}

.treeview li{
	cursor: pointer !important;
	background-color: #efefef;
}
