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

li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
  list-style-type: none;
  padding-left: 10px;
	background-image: url(../images/opsomming.gif);
	background-repeat: no-repeat;
	background-position: left top;
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: 3px;
  padding-bottom: 0px;
}

li.submenu{ /* Style for LI that contains sub lists (other ULs). */
  padding-left: 18px;
	background-image: url(../images/closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px;
  cursor: hand !important;
  cursor: pointer !important;
}

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

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