.treeview ul{ /*CSS for Simple Tree Menu*/
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	padding-top: 0px;
	background-repeat: no-repeat
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	/* background-image: url(../images/folder-closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px; */
	background-color: transparent;
	list-style-type: none;
	list-style-image: url(../images/folder-closed.gif);
	padding-left: 1px;
	margin-bottom: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: pointer !important;
	cursor: pointer !important;
	background-color: transparent;
	/* background-image: url(../images/folder-closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px; */
	list-style-image: url(../images/folder-closed.gif);
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /* Hide them by default. Don't delete. */
	background-repeat: no-repeat;
	list-style-image: url(../images/folder-closed.gif); /*new addition*/
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: pointer;
	display: compact; /*new addition*/
	background-repeat: no-repeat;
	list-style-image: url(../images/folder-closed.gif); /*new addition*/
}