ul.treeview { /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: rgb(74,170,181);
list-style-type: none;
border: 0;
border-bottom: 1px solid rgb(189,190,198);
padding: 0;
margin: 0;
}

.treeview li a, .treeview li a:visited
{
  padding: 5px 5px 5px 10px;
  display: block;
  width: 200px;
  min-height: 20px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: rgb(66,65,66);
  text-transform: uppercase;
}

.treeview li a:hover
{
  text-decoration: none;
  background: rgb(189,190,198);
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */

}


.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) */
background: rgb(214,211,214);
border: 0;
border-top: 1px solid rgb(189,190,198);
border-bottom: 1px solid rgb(189,190,198);
}

.treeview .submenu ul li a, .treeview .submenu ul li a:visited
{
  text-transform: none;
}
