.treeview ul{
	margin: 0; 
	padding: 0;
}
.treeview li{
	background: url(list.png) no-repeat 0 2px; 
	/*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	margin-bottom: 5px;
	line-height: 1.6em;
	padding-left: 20px;
}
.treeview li.submenu{
	background: url(closed.gif) no-repeat left 1px; 
	/* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
}
.treeview li.submenu ul{
	display: none; /*Hide them by default. Don't delete. */
}
.treeview .submenu ul li{
	cursor: default; /*Style for LIs of ULs that are children of LIs (submenu) */
}
