a:link {text-decoration:none;}
a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 4px;
padding: 4px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #AFD170 url(list.png) no-repeat left center;
font-family:Arial;
list-style-type: none;
padding-left: 22px;
margin-bottom: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #AFD170 url(closed.png) no-repeat left 1px;
padding-left:24px;
padding-top:4px;
background-color:#ABE386;
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. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
background-color:#B7E697;
cursor: default;
}