.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-image:url(images/li_bg.gif) no-repeat;
list-style-type:
padding-top: 10px;
padding-bottom:0px;
margin: 0;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
margin-left:0px;
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) */
cursor: hand !important;
cursor: pointer !important;
}

.treeview li.submenu1{ /* Style for LI that contains sub lists (other ULs). */
list-style-image:url(images/double_arrow.gif);
margin-left:0px;
cursor: hand !important;
cursor: pointer !important;
}


.treeview li.submenu1 ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu1 ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}
.treeview .submenu ul li ul{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}
.treeview .submenu ul li ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}