.treeview {
margin: 7%;
padding: 0;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 10px;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none; 
margin-bottom: 10px;
font-family:Tahoma, Geneva, sans-serif;
font-size: 11px;
color:#746b5f;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: pointer !important;
padding-left: 10px;
/*color: #FAA632;  /*naranja*/
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
color: #7F7E7C;
margin-left: 15px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
padding-left: 10px;
}

.treeview a {
    text-decoration: none;
    color: inherit;
}

