.treeview{
width: 200px;
clear: both;
font-size: 11px;
font-family: Verdana;
}
.treeview a{
text-decoration: none;
}
.treeview a:hover{
text-decoration: underline;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #F9F300 url(../img/list.gif) no-repeat left center;
list-style-type: none;
margin: 0;
text-indent: 16px;
border-bottom: 1px solid  #ccc;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #F9F300 url(../img/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
margin: 0;
padding: 0;

}
.treeview li ul li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #FFFCBE url(../img/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
margin: 0;
padding: 0;

}
.treeview li ul.submenu{ /* Style for LI that contains sub lists (other ULs). */
margin-top: 15px;
}


.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: 0;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin: 0;
padding: 0;
background: #FFFCBE;
border-bottom: 1px solid  #ccc;
font-weight: normal;
}
.treeview .submenu ul li ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin: 0;
padding: 0;
background: #FFFCBE;
border-bottom: 1px solid  #ccc;
font-weight: normal;

}
