.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	background-color: #454545;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	text-indent: 10px;
}
.treeview li a {
	color: #FFF;
	text-decoration: none;
}
.treeview li ul li {
	background-color: #989898;
	text-indent: 15px;
}
.treeview li ul ul li {
	color: #000;
	background-color: #FFF;
	line-height: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-indent: 0px;
	padding-left: 20px;
}
.treeview li ul ul li a {
	color: #000;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-image: url(closed.gif);
	background-repeat: no-repeat;
	background-position: 140px 5px;
}


.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;
}
