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

#treemenu2 {
	margin: 0;
	padding: 0 0 0 10px;
	width:720px;
	font-size:11px;
	color:#FFF;
	font-weight:normal;
	font-family: Arial, Helvetica, sans-serif;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding: 0 0 5px 23px;
	margin: 0 0 13px 0;
	background-color: #000;
	background-image: url(../images/disent-web10-990_21.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	color: #FFF;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-color: #000;
	background-image: url(../images/disent-web10-990_21_close.jpg);
	background-repeat: no-repeat;
	background-position: left -2px;
	color: #FFF;
	font-size: 14px;
}


.treeview li.submenu ul { /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin:0;
	padding: 10px 0 0 0;
	font-size:11px;
	font-weight:normal;
	color: #C0C6CB;
	letter-spacing: 0.5pt;
}

.treeview .submenu ul li a { /*Style for LIs of ULs that are children of LIs (submenu) */
	margin: 0 0 10px 0;
	color:#FFF;
	text-decoration:none;
}

.treeview .submenu ul li a:hover { /*Style for LIs of ULs that are children of LIs (submenu) */
	text-decoration:underline;
	color: #FFF;
}

