.treeview {
  border:0px solid #cccccc;
  width:175px;
  padding-left:0px;
  margin-left:0px;
  
}

.treeview ul{ /*CSS for Simple Tree Menu*/
  width:150px;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
padding-left: 5px;
margin-bottom: 1px;
  font-size:14px;
    font-weight:500;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */

cursor: hand !important;
cursor: pointer !important;
  font-size:15px;
  font-weight:600;
  padding-left:10px;
  padding-bottom:5px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
  padding-left:0px;
  margin-left:0px;
  padding-top:2px;
  padding-bottom:2px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}