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

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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
llist-style-image:url(/bilder/design/list.png);
list-style-image:none;
list-style-type:circle;
padding-left: 0px;
margin-bottom: 1px;
}

.treeview li.hassub{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-image:url(/bilder/design/closed.png);
padding-left: 0px;
margin-bottom: 1px;
}
.treeview li.hassub ul{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-image:url(/bilder/design/closed.png);
padding-left: 0px;
margin-bottom: 1px;
display: none; /*Hide them by default. Don't delete. */
}

.treeview li.opensub{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-image:url(/bilder/design/open.png);
padding-left: 12px;
margin-bottom: 1px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(/bilder/design/closed.png) 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) */
list-style-type:circle;
cursor: default;
}
