
.treeview { /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
position:relative;
left:10px;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
left:5px;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size:9pt;color:#FFFFFF;text-decoration:none;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size:8pt;color:#FFFFFF;text-decoration:none;
padding-left: 8px;
margin-bottom: 5px;
margin-top: 3px;
list-style-image: none ;


}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */

font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size:9pt;color:#FFFFFF;text-decoration:none;
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. */
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size:8pt;color:#FFFFFF;text-decoration:none
padding-left: 8px;
margin-bottom: 5px;
margin-top: 3px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size:8pt;color:#FFFFFF;text-decoration:none
}