.treeview { /*CSS for Simple Tree Menu*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin: 0px;
	padding: 0px;
	line-height: 14px;
	font-weight: bold;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10px;
	margin: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-top: 2px;
	padding-bottom: 0px;
}
.treeview li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	color: #000000;
	text-decoration: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 14px;
}
.treeview li a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	color: #FFF;
	text-decoration: none;
}
.treeview-active{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	color: #FFFFFF;

}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	color: #000000;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
}