.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: white url(../images/list.gif) no-repeat left top;*/
padding-left: 10px;
text-indent: 10px;
list-style-type: none;
margin-top: 3px;
margin-bottom: 2px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/closed.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. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
/*background: white url(../images/list.gif) no-repeat left top;*/
color: #000;
list-style-image: url(../images/list.gif);
cursor: default;
margin-left: 15px;
margin-top: 3px;
padding: 0px;
text-indent: 0px;
/*border: 1px solid #ff0000;*/
}