.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
width:110px;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
margin-left:20px;
padding-left: 0px;
margin-bottom:5px;
list-style-type: none;
list-style-image:none;
font-family:trebuchet,arial,sans-serif; font-size:14px; color:#555555;
width:110px;

}

li:hover{
color:#000000;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
width:110px;


}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
width:80px;
font-family:trebuchet,arial,sans-serif; font-size:12px; color:#aaaaaa;
list-style-type: none;
list-style-image:none;


}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-bottom: 5px;
margin-top: 5px;
width:80px;
font-family:trebuchet; font-size:12px; color:#999999;
list-style-type: none;
list-style-image:none;


}