/*CSS for Simple Tree Menu*/
.treeview ul{
  margin: 0px;
  padding: 0px;
}

/*Style for LI elements in general (excludes an LI that contains sub lists)*/
.treeview li{
  background: white url("http://www.foodandhealth.com/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("http://www.foodandhealth.com/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;
}

