 /*CSS for Simple Tree Menu*/
.treeview
{
background: white;
border: 1px solid #666;
padding: 10px;
}

.treeview ul
{
margin: 0px;
padding: 0px;
list-style-type: none;
letter-spacing: 0.1em;
}

/*Style for LI elements in general (excludes an LI that contains sub lists)*/
.treeview li
{
list-style-type: circle;
padding: 3px 0px 3px 5px;
margin: 0px 0px 1px 15px;
}

.treeview li:hover
{
}

/* Style for LI that contains sub lists (other ULs). */
.treeview li.submenu
{
cursor: pointer !important;
list-style-type: disc;
}

.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: default;
}

li a:hover
{
text-decoration: none;
}