.treeview ul{ /*CSS for Simple Tree Menu*/
  margin-left: -10px;
  padding-left: 1px;
  width:120px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: white url(images/list.gif) no-repeat left center;
	list-style-type: none;
	font: 12px Arial, Helvetica, sans-serif;
	border-style: solid; 
	border-color: #EBEBEB; 
	border-width: 1px;
	padding: 10px 12px 12px 24px;
    background: #FBF9FA;
  	width:120px;
  margin-left: -40px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: white url(images/closed.gif) no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !important;
	list-style-type: none;
	font: 12px Arial, Helvetica, sans-serif;
	padding: 10px 12px 12px 24px;
    background: #FBF9FA;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	cursor: hand !important;
	cursor: pointer !important;
	list-style-type: none;
	font: 12px Arial, Helvetica, sans-serif;
 	margin-left: -10px;
	padding-left: 0px
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	cursor: hand !important;
	cursor: pointer !important;
	list-style-type: none;
	font: 12px Arial, Helvetica, sans-serif;
    background: #FFFFFF;
 	margin-left: -5px;
 	margin-right: -5px;
 	padding-left: 10px
}
