/* CSS Document */

  
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
padding-left:-10px;
left:-10;
font-size: 10px;
font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(list.gif) no-repeat left center;
list-style-type: none;
padding-left: 20px;
margin-bottom: 0px;
margin-left:-40;
font-size:10pt;
font-weight: bold;
left:30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
font-size:10pt;
margin-left:-40;
font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;

left: 30px;}


.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-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
margin-left:10;
font-size:9pt;}
