.treeview ul{ /*CSS for Simple Tree Menu*/
text-align:left;
margin-left: 00;
padding-left: 0;
list-style-type: none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
text-align:left;
list-style-type: none;
padding-left: 22px;
margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
text-align:left;
cursor: hand;
cursor: pointer !important;
list-style-type: none;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
list-style-type: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
list-style-type: none;
}

.defaultsub li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
margin-left: 12;
padding-left: 3;
padding-top: 0;
padding-bottom: 15;
display: none; /*Hide them by default. Don't delete. */
list-style-type: disc;
font-size: 12px;
color: #FFFFFF;
}

.defaultsub .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
margin-left: 12; /*submenu verplaatsen naar links of rechts*/
padding-left: 0;
padding-top: 0;
cursor: default;
list-style-type: disc;
font-size: 15px;
color: #FFFFFF;
}

a.menu:active, a.menu:link, a.menu:visited {
  font-size: 12px;
  font-weight: none;
  color: #FFFFFF;
}

a.menu:hover {
  font-size: 12px;
  font-weight: none;
  color: #6E6E6E;
}

