.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #d6d6d6 url(../images/blackarrow.gif) left center no-repeat;
	list-style-type: none;
	padding:0 0 6px 22px;
	margin-top:7px;
	border-bottom: 1px solid #fff;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: #d6d6d6 url(../images/sblackarrow.gif) no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !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;
	border: none;
}

.treeview .submenu ul li ul{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	
}



