.treeview ul{ /*CSS for Simple Tree Menu*/
background: #f9f9f9
width:	100px;
margin:  0px;
padding-left: 0;
padding-right: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #f9f9f9 url('list.gif') no-repeat left center;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;	
font-size: 11px;
list-style-type: none;
padding-left: 8px; /*positie tekst naast de bullet*/
padding-right: 0px; 
width:	150px;
margin-bottom: 5px
left: -20px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #f9f9f9 url('closed.gif') no-repeat left 1px;
width:	150px;
padding-left: 30px; /*positie van alle menuitems*/
cursor: hand !important;
cursor: pointer !important
position: relative;
left: -20px;
}


.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: hand;
cursor: pointer !important;
}
