ul{ /*CSS for Simple Tree Menu*/
padding: 0px; margin: 0px;
color:#000000;
font-weight:bold;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
padding: 0px; margin: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url("./../images/buttonov.jpg") no-repeat left;
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. */
padding: 5px;
padding-left: 20px; margin: 0px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
padding: 3px 0px 3px 5px;
border-bottom: 1px solid #D2C9AA;
color:#707070;
list-style:square inside;
background: none;

}
.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
color:#707070;
}
