.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
font-family:Arial,Helvetica,sans-serif;
font-size:13px;
}

ul.bold {
    font-weight: bold;
}
ul.arrow_o {
    list-style: outside none none;
    padding-left: 0;
}

ul.arrow_o li {
    background: transparent url("images/menutree/i_arrow_o.gif") no-repeat scroll 0 4px;
    padding: 0 0 0 14px;
}

.treeview li{
list-style-type: none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: transparent url("images/menutree/i_arrow_o.gif") no-repeat scroll 0 4px;
cursor: hand !important;
cursor: pointer !important;
}


.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: transparent url("images/menutree/arrow.gif") no-repeat scroll 0 4px;    
  font-weight:normal;  
  padding: 0 0 0 14px;                  
  cursor: default;
}

