.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding-left: 16px;
background-color:#FFFFFF;
background-repeat:no-repeat;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(list.gif) no-repeat left center;
font-family: tahoma;
list-style-type: none;
padding-left: 20px;
padding-top: 3px;
margin-bottom: 0px;
font-size:11px;
color: #383838;
}

.treeview li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 0px;
	margin-top:5px;
	margin-bottom: 0px;
	font-size:12px;
	font-family: tahoma;
	font-weight: normal;
	color: #383838;
	text-decoration: none;

}


.treeview li a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	text-decoration: none;
	color: #1181BD;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(plus.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;
}

