.treeview { /*CSS for Simple Tree Menu*/
	padding-left: 20px;
	}
.treeview ul {
	margin: 0;
	padding: 0;
	padding-top: 2px;
	}
.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
    background: url('images/bg_cat.gif') no-repeat left 6px;
	list-style-type: none;
	margin: 0;
	padding: 7px 0 2px 35px;
    position: relative;
    left: -16px;
	}
.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
	background: url('images/bg_cat_close2.gif') no-repeat left 4px;
	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;
	}
