.treeview, .treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0 0 10px 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background-color: none;
	background-image: url(/simpletree/list.gif);
	background-repeat: no-repeat;
	background-position: left top;
	list-style-type: none;
	padding: 0 0 0 16px;
	margin: 6px 0 0 0;
	border-bottom: 1px solid #ddd;
}


.treeview li a   {
	color: #383226;
}

.treeview li a:visited   {
	color: #383226;
}

.treeview li a:hover   {
	color: #FF6600;
}

.treeview li a:active   {
	color: #383226;
}



.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background-color: none;
background-image: url(/simpletree/closed.gif);
background-repeat: no-repeat;
background-position: left 1px;
border-bottom: none;
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;
}

