.treeview ul{
	margin: 10px;
	padding: 0;
	width: 220px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	color: #000;
	font: 11px/13px "Lucida Grande", Lucida, Verdana, sans-serif;
	text-decoration: none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
}

.treeview li.submenu img { /* Style for LI that contains sub lists (other ULs). */
	margin: 1px;
	padding: 0;
}


.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;
	margin: 6px 0;
}


.treeview ul li a:link {
	color: black;
}

.treeview ul li a:visited {
	color: black;
}

.treeview ul li a:hover {
	text-decoration: underline;
	color: black;
}

.treeview ul li a:active {
	color: black;
	font-weight: bold;
}



