.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

#treemenu2 {
margin: 0;
padding: 0 0 0 10px;
width:220px;
font-size:13px;
color:#6A6A6A;
font-weight:bold;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../images/circle_off.jpg) no-repeat left center;
list-style-type: none;
padding: 0 0 5px 23px;
margin: 0 0 13px 0;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/circle_on.jpg) no-repeat left -2px;
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. */
margin:0;
padding: 10px 0 0 0;
font-size:11px;
font-weight:normal;
}

.treeview .submenu ul li a { /*Style for LIs of ULs that are children of LIs (submenu) */
margin: 0 0 10px 0;
color:#6A6A6A; 
text-decoration:none;
}

.treeview .submenu ul li a:hover { /*Style for LIs of ULs that are children of LIs (submenu) */
text-decoration:underline;
}