.treeview ul
{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
margin-left: -40px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

.treeview li
{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
padding-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: -50px;
font-weight: normal;
}

.treeview li.submenu
{ /* Style for LI that contains sub lists (other ULs). */
cursor: pointer;
cursor: hand;
}

.treeview a:hover
{
	text-decoration: underline;
}

.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) */
font-weight: normal;
cursor: default;
margin-left: 40px;
}
.treeview .submenu ul li a
{
	font-weight: normal;
}
.treeview .submenu ul li a:hover
{
	text-decoration: underline;
	color: Gray;
}
.treeview a, .treeview a:link, .treeview a:visited
{
	text-decoration: none;
	color: #000000;
}