.treeview ul{ /*CSS for Simple Tree Menu*/
list-style:none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
float:left;
list-style-type: none;
font-weight:bold;
}

.treeview li a{
 background:url(../images/ulli_menu.gif) no-repeat 20px 10px;  padding:7px 0 0 28px;width:164px;}

.treeview li a:hover {text-decoration:underline;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none;
list-style:none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
font-weight:normal;
}

.treeview .submenu ul li a{ background:url(../images/ulli_menu.gif) no-repeat 26px 10px;  padding:7px 0 0 34px;width:158px;}
