
.treeview ul{ /*CSS for Simple Tree Menu*/
float:left;
margin: 0;
padding: 0;


}




.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(/includes/list.gif) no-repeat;
float:left; 
list-style-type: none;
margin-bottom: 3px;
padding:0 1px 0 22; 
color:#ffffff;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
float:left; 
background:  url(/includes/closed.gif) no-repeat;
cursor: hand !important;
cursor: pointer !important;
color:#ffffff;
/*margin-left: -30px;*/
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
float:left; 
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
float:left; 
cursor: default;
}