
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
text-align:left;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../pic/listv.gif) no-repeat left center;
background-color:#C8FC98;
list-style-type: none;
padding-left: 15px;
margin-bottom: 3px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 1.em; color: #8B0000; font-weight: normal; text-align:left;

}
.treeview a:link, .treeview a:visited {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: .8em; color: #8B0000; font-weight: normal; text-decoration: none;
}
.treeview a:hover {
	 text-decoration: underline;
}
.treeview li.lock{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../pic/lock.png) no-repeat left center;
background-color:#C8FC98;
list-style-type: none;
padding-left: 15px;
margin-bottom: 3px;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../pic/arrow_r.gif) no-repeat left 1px;
background-color:#C8FC98;
cursor: hand !important;
cursor: pointer !important;
list-style-image:none;

}


.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;
}
