.mm_tree ul , li{ /*CSS for Simple Tree Menu*/
	margin:0px;
	padding:0px;
	list-style:none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	margin:0px;
	padding:0px;
	list-style:none;
	
	list-style-type: none;
	padding-left: 16px;
	padding-right:3px;
	margin-bottom: 3px;
	border:1px solid #000000;
	border-left:0px;
	border-right:0px;
	
	min-height:20px;
	line-height:20px;
}

.treeview li li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	border:0px;
	margin:0px;
	padding:0px;
	list-style:none;
	padding-left: 16px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/pijl_rechts.jpg) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}