ul.treeview { /*CSS for Simple Tree Menu*/
height:100%;
margin: 0;
padding: 0;
list-style-position:inside;
}
.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(list.gif) no-repeat left top;
list-style-type: none;
margin-top:0px;
padding-top:0px;
padding-left:12px;
margin-bottom:3px;
margin-bottom:0px;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(images/closed.gif) no-repeat left top;
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. */
margin:0px;
padding:0px;
}
.treeview .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
font-size:11px;
cursor: default;
}
.treeview .submenu ul li a { /*Style for LIs of ULs that are children of LIs (submenu) */
font-size:11px;
cursor: default;
font-weight:normal;
}