.treeview {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #000000;
}

.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0 0 0 0;
	font-weight: bold;
	color: #000000;
}

.treeview li { 
	font-weight: bold;
	color: #000000;
	padding-left: 0;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #DBDBDB no-repeat;
	list-style-type: none;
}

.treeview ul li {
	margin-bottom: 0;
}

li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: #DBDBDB url('closed.gif') no-repeat 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: default;
}