 /* CSS for Simple Tree Menu */

.treeview ul
{
   margin : 0;
   padding: 0;
}

/* Style for LI elements in general (excludes an LI that contains sub lists) */
.treeview li
{
   background     : white url(/Theme/Images/list.gif) no-repeat left center;
   list-style-type: none;
   padding-left   : 22px;
   margin-bottom  : 3px;
}

/* Style for LI that contains sub lists (other ULs). */
.treeview li.submenu
{
   background     : white url(/Theme/Images/closed.gif) no-repeat left 1px;
   /*cursor: hand !important;*/
   /*cursor: pointer !important;*/
}

/* Style for ULs that are children of LIs (submenu) */
.treeview li.submenu ul
{
   display        : none; /*Hide them by default. Don't delete. */
}

/*Style for LIs of ULs that are children of LIs (submenu) */
.treeview .submenu ul li
{
   /*cursor: default;*/
}