.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)*/
list-style-type: none;
padding-left: 22px;
}

/* Style for LI that contains sub lists (other ULs). */
.treeview li.submenu{background: url(../images/Plus.gif) no-repeat left 1px; cursor: default;}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

/*Style for LIs of ULs that are children of LIs (submenu) */
.treeview .submenu ul li{cursor: default; color:#bf0000; text-decoration:none;}
.treeview .submenu ul li A {cursor: default; color:#bf0000; text-decoration:none;}
.treeview .submenu ul li A:hover {cursor: hand; color:#bf0000; text-decoration:underline;}

.link {color:#bf0000; text-decoration:none;}
.link A {color:#bf0000; text-decoration:none;}
.link A:hover{color:#ef0000; text-decoration:underline;}