
.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)*/
background: url(../images/closed.gif) no-repeat left center;
list-style-type: none;
padding-left: 22px;
line-height: 100%;
font: bold 11px Verdana; color: #45494d;
}

.treeview li.submenu li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../images/list.gif) no-repeat left center;
}

.treeview li a {font: bold 11px Verdana; color: #45494d; text-decoration: none; line-height:0;}
.treeview li a:hover {text-decoration: underline;}
.treeview li a.current {font: bold 11px Verdana; color: #f7b310;}
.treeview li.submenu li a {font: normal 11px Verdana; color: #45494d; text-decoration: none; line-height:0;}
.treeview li.submenu li a:hover {text-decoration: underline;}
.treeview li.submenu li a.current {font: bold 11px Verdana; color: #f7b310;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/closed.gif) no-repeat left top;
line-height: 100%;
cursor: hand !important;
cursor: pointer !important;
margin-top: 3px;
}

.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;
line-height: 100%;
margin-top: 3px;
}

