.treeview ul{ /*CSS for Simple Tree Menu*/
position:relative;
margin:0;
padding-left:0px;
margin-left:15px;
margin-right:0px;
list-style: none;
white-space:nowrap;
list-style-type:none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: white url(images/list.gif) no-repeat left center;*/
margin:0;
padding-left:0px;
margin-left:0px;
margin-right:0px;
list-style-type: none;
margin-bottom: 2px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/*background: white url(images/blank.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. */
padding-left:0px;
margin-left:0px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
;
}
