*/ For Treeview */
.treeview ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}

ul {
list-style-type: none;
margin-left: 0px;
padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
padding-left: 0px;
display: block;
width: 100%;
color: black;
text-decoration: none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
display: block;
width: 100%;
color: black;
text-decoration: none;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
margin-left: 24px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}

