.treeview ul{ /*CSS for Simple Tree Menu*/
	margin-left: 0;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	list-style-image: none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background:  url(list.gif) no-repeat right center;
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight:bold;
	text-indent: -35px;
	margin-left:0px;
	margin-bottom: 2px;
}
.treeview li a:link{font-weight:normal; color:#000000; text-decoration:none }
.treeview li a:visited{ font-weight:normal;color:#000000; text-decoration:none }
.treeview li a:hover{ font-weight:normal;color:#FFFFFF; text-decoration:none }


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


.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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
