.treeview
{
margin: 0;
padding-left:5px;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
padding:0px;
margin:0px;
}
.treeview ul li{ border:0;}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

background: url(left-pointer.gif) no-repeat left 11px;
list-style-type: none;
padding-left: 15px;
padding-top:8px;
margin-bottom: 3px;
border-bottom:1px dashed #CFCFB5;
font-size:11px; font-weight:bold;
text-decoration:none;

}
/*color:#9D9D9D;*/
.treeview li a
{font-size:11px ; color:#666666;  text-decoration:none;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(arrow.gif) no-repeat left 11px;
cursor: hand !important;
cursor: pointer !important;
font-size:11px ; color:#9D9D9D; text-decoration:none;
}

.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;
}
