.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
/*width: 300px;*/
/*margin-left:-40px;*/

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: url(../images/img-tree-list.gif) no-repeat left center;*/
list-style-type: none;

margin-bottom: 3px;

margin: 0;
margin-left:0px;

font-family: Arial,Helvetica,sans-serif;
font-size: 11px;

border-bottom: 1px solid #aaaaaa;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(http://www.un.org/womenwatch/daw/images/img-tree-closed.gif) no-repeat left 1px;
padding-left: 16px;
cursor: hand !important;
cursor: pointer !important;

margin: 0;

font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
}

.treeview li a {
display:block;
text-decoration:none;
color: black;

}

.treeview li a:hover
{
background-color: #0099FF;
color: white;

}

.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) */
cursor: default;
}