.treeview ul{  /* CSS for Simple Tree Menu */
	margin: 10px;
	padding: 0px;
	cursor: default;
}

.treeview li{  /* Style for LI elements in general (excludes an LI that contains sub lists) */
	background: black url(pics/menu-triangle-right-white.gif) no-repeat left 4px;
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 10px;
	cursor: default;
}

.treeview li.submenu{  /* Style for LI that contains sub lists (other ULs). */
	background: black url(pics/menu-triangle-right-white.gif) no-repeat left 4px;
	/* cursor: hand !important; - does not exist? */
	cursor: pointer !important;  /* is a hand */
}


.treeview li.submenu:hover{  /* Style for LI that contains sub lists (other ULs). */
	background: black url(pics/menu-triangle-right-white.gif) no-repeat left 4px;
	color: yellow;
	/* cursor: hand !important; - does not exist? */
	cursor: pointer !important;  /* is a hand */
}


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

.treeview .submenu ul li{  /* Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	/* background: grey url(pics/menu-triangle-right-white.gif) no-repeat left 4px; */
}
