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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: white url(list.gif) no-repeat left center;*/
list-style-type: none;

margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white /*url(assets/img/closed.gif)*/ no-repeat left !important;
background-position: 0 3px !important;
cursor: hand !important;
cursor: pointer !important;
padding-left: 1px !important;
}

.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;
padding-left: 10px;
}
.treeview div{
	background-color: #EFEFC6 !important;
	padding-left: 5px !important;
	margin-bottom: 3px;
}
.treeview .submenu ul li a{
	/*display: block;
	background-color: #8C8400;
	color: white;*/
}