ul.treeview { /*CSS for Simple Tree Menu*/
margin: 0px 0px 0 0;
padding: 5px 0 0 0;
font-size:11px;

}

ul.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../images/list.gif) no-repeat left center;
list-style-type: none;
padding:3px 0 6px 13px;
margin:0px 0 3px 0px;
border-bottom:1px solid #d9d6c7;
font-weight:bold;
height:1%;
}
ul.treeview li#last{
border-bottom:1px solid #fef8de;
}
ul.treeview li ul li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
border-bottom:none;
margin-left:-42px;
margin-bottom:-3px;
font-weight:bold;
color:#666666;
}


ul.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;

}


ul.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */

}

ul.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}
ul.treeview .submenu ul li ul li a{
text-decoration:underline;
font-weight:normal;
}
ul.treeview .submenu ul li ul li a.activelink{
text-decoration:none;
font-weight:bold;
}
