#treemenu1
{
	margin:0;	
	font: margin: 0 0 0;
	padding: 0.1em;
	margin-left:0;
	border: none;
	color: white;
	overflow:hidden;
}

.treeview ul{
	/*CSS for Simple Tree Menu*/

	font: margin: 0 0 0;
	padding: 0.01em;
	margin-left:0;
	border: none;
	color: white;
	overflow:hidden;	
}

.treeview li{
	/*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #212B5A  no-repeat left center;
	overflow:hidden;
	list-style-type: none;
	padding-left: 6px;
	margin-bottom: 4px;
	margin-right: 10px;
	color:white;
	
	font-family: sans-serif;
	font-size: 13px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #212B5A url(arrow.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
}



.menuentry,.menuentryover{ /* Style for all the menus*/
	cursor: hand !important;
	cursor: pointer !important;
}

.menuentryover{
	color: #0080C0;
}
.menuentryselected{

    color : red ;
}

.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-top: 2px;
	margin-left: 4px;
	font-family: sans-serif;
	font-size: 11px;

}
