.treeview { /*CSS for Simple Tree Menu*/
	padding: 0;
	margin: 0px;
	margin-top: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 12px;
	margin-bottom: 1px;
	margin-left: 0px;
	background-color: #0C0C0C;
	background-image: url(list.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: pointer!important;
	cursor: pointer !important;
	background-image: url(closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px;
}

.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: pointer;
}

.treemenuhl { /*Style for current category*/
font-weight: bold;
color: #FF0000;
}