.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #efeae2 no-repeat left center;
list-style-type: none;
list-style-image: url(list5x5.gif);
/* padding-left: 22px; */
padding-left: 5px;
margin-left: 3px;
list-style-position: outside;
/*padding-right: 5px;
text-indent: 5px;*/
padding-bottom: 5px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/* background: #efeae2 url(closed.gif) no-repeat left 1px;*/
background: #efeae2 no-repeat left 1px;
list-style-image: url(list5x5.gif);
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. */
padding-left: 5px; 
list-style-position: inside;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;

}

.treeview a:hover
{
	background-color: #011C7E;
	color:White;
}
	
	
