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


}
ul.treeview{
border-style:solid;
border-width:1px;
padding-top:10px;
padding-bottom:10px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #F6F6F6 url(./list.gif) no-repeat left center;
list-style-type: none;
padding-left: 22px;
margin-bottom: 3px;
cursor: hand !important;
cursor: pointer !important;


}

.treeview a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
text-decoration: none;
color: #666666;
}
.treeview a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color: #6FAAFF;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #F6F6F6 url(./closed.gif) no-repeat left 1px;
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. */
cursor: hand !important;
cursor: pointer !important;
}
.treeview li.submenu ul:hover{ /*Style for ULs that are children of LIs (submenu) */

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}

.treeview .submenu ul li:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}

