.treeview { text-align:left;}
.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: #dee3e6 url(../images/list.gif) no-repeat left center;
list-style-type: none;
font-weight:bold;
padding-left: 32px;
margin-bottom: 3px;
}
.treeview li a:link{ font-weight:bold; text-decoration:none; color:#0067a9;}
.treeview li a:active{ font-weight:bold; text-decoration:none; color:#0067a9;}
.treeview li a:visited{ font-weight:bold; text-decoration:none; color:#0067a9;}
.treeview li a:hover{ font-weight:bold; text-decoration:underline; color:#0067a9;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #dee3e6 url(../images/closed.gif) no-repeat left 1px;
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. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-weight:bold;
}
.treeview .submenu ul li a:link{ font-weight:normal; text-decoration:none; color:#0067a9;}
.treeview .submenu ul li a:active{ font-weight:normal; text-decoration:none; color:#0067a9;}
.treeview .submenu ul li a:visited{ font-weight:normal; text-decoration:none; color:#0067a9;}
.treeview .submenu ul li a:hover{ font-weight:normal; text-decoration:underline; color:#0067a9;}


