.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: none;
background-image:none;
list-style-type: none;
padding-left: 20px;
margin-bottom: 0px;
line-height:12px;
display:block;
color:#000000;
}
.treeview li A{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color:#000000;
text-decoration:none;
text-align:left;
display: block;
margin-left:0px;
font-weight:normal;
font-size:9pt;
font-family:Verdana;
line-height:12px;
}
.treeview li A:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background-image:none;
list-style-type: none;
margin-bottom: 0px;
line-height:12px;
display:block;
color:#ffffff;
line-height:12px;
}
.treeview li A:visited{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color:#000000;
text-decoration:none;
text-align:left;
display: block;
margin-left:0px;
font-weight:normal;
font-size:9pt;
font-family:Verdana;
line-height:12px;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/bullet.jpg) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
font-size:9pt;
font-weight:bold;
color:#000000;
}


.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;
}
