ul.treeview { /*CSS for Simple Tree Menu*/
height:100%;
margin: 0px 10px 0px 10px;
padding: 0;
list-style-position:inside;
}
.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	text-align: left;
	margin-top:0px;
	padding-top:0px;
	margin-left: 12px;
	padding-left:10px;
	padding-right:12px;
	margin-bottom:3px;
	margin-bottom:0px;
	background-image: url(images/open.gif);
	background-repeat: repeat;
	background-position: left top;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(images/closed.gif) no-repeat left top;
cursor: hand !important;
cursor: pointer !important;
}
.treeview li.submenu ul { /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin:0px;
	padding:0px;
}
.treeview .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
font-size:11px;
cursor: default;
	list-style-type: disc;
	list-style-position: outside;
}
.treeview .submenu ul li a { /*Style for LIs of ULs that are children of LIs (submenu) */
font-size:11px;
cursor: default;
color: #ffffff;
font-weight:normal;
}
