.treeview ul{ /*CSS for Simple Tree Menu*/
	margin-left: 0px;
	margin-left: 34px;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	/*display: block;
	position: relative;
	float: none;
	list-astyle-type: none;*/
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	margin-left: -34px;
	list-style-type: none;
	padding-left: 20px;
	margin-bottom: 1px;
	background-image: url(closed.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.treeview li.open{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	margin-left: -34px;
	list-style-type: none;
	padding-left: 20px;
	margin-bottom: 1px;
	background-image: url(open.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-color: white;
	background-image: url(closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px;
	color: #666666;
}
.treeview li.open2{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-color: white;
	background-image: url(open.gif);
	background-repeat: no-repeat;
	background-position: left 1px;
}

.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;
}

