ul.wrapper {
	list-style-position: outside;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: none;
	list-style-type: none;
	padding-left: 11px;
	/*margin-bottom: 8px;*/
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
	background: url('/images/arrow_closed.png') no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !important;
	margin-bottom: 18px;
}

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

.treeview .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	margin-top: 8px;
}