.treeview ul{ /*CSS for Simple Tree Menu*/
	text-decoration: none;
	clip: rect(auto,auto,auto,auto);
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: white url(bos.gif) no-repeat left center;
	list-style-type: none;
	padding-left: 15px;
	margin-bottom: 5px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;
}
.treeview li :link, .treeview li :visited, .treeview li :hover, .treeview li :active { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: white url(arti.gif) no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !important;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;
}

.treeview li.submenu :link, .treeview li.submenu :visited, .treeview li.submenu :hover, .treeview li.submenu :active { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin-bottom: 5px;		
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	margin-top: 5px;
}

