.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	color: #FFFFFF;
	text-align: left;
	margin-bottom: 3px;
	font-family: Arial;
	font-size: 100%;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-weight: normal;
	text-align: left;
	color: #FFFFFF;
}


.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: left 1px;
	font-weight: bold;
	color: #FFFFFF;
	font-family: "Lucida Sans";
	font-size: 85%;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	color: #FFFFFF;
	font-weight: normal;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: normal;
	margin-left: 30px;
	list-style-type: disc;
}
.treeview  a {
	margin-bottom: 3px;
	color: #FFFFFF;
	text-align: left;
	font-size: 80%;
	text-decoration: none;
	font-weight: bold;
}
