.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: white url(/fortune/img/ico.jpg) no-repeat left center;*/
	background: #b9fbb8;
    background-image: url(../img/hms/ico.jpg);
    background-repeat: no-repeat;
	background-position: 0px 9px;

/*
padding-left:0;
margin-bottom: 3px;
background:#EEEEEE;
*/
}
.treeview li a 
{
	padding-left:15px;
	font-size: 14px;	
	font-family: Tahoma;
	color:#000000;
	line-height: 24px;
}

.treeview li a:hover
{
	color:red;
}

.treeview li a:selected
{
color:green;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/*background: white url(/fortune/img/ico.jpg) no-repeat left 1px;*/
cursor: hand !important;
cursor: pointer !important;
}

.treeview li.submenu ul a
{
text-decoration:none;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
padding-left:10px;
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;
}
