.treeview ul{ /*CSS for Simple Tree Menu*/
	padding: 0;
	margin: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 3px;
	background-image: url(../images/list.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-family: Tahoma, sans-serif;
	font-size: 12px;
	color: #004469;
	
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-image: url(../images/closed.png);
	background-repeat: no-repeat;
	background-position: left 1px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none;
	margin: 0px;
	padding: 0px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}
