.treeview ul{ /*CSS for Simple Tree Menu*/
text-decoration: none;
margin: 0;
padding: 0;
text-transform: none;
color: #545151;
font-family: Tahoma;
font-size: 12px;
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 14px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #F0F1DF url(images/a1.gif) no-repeat left;
text-decoration: none;
list-style-type: none;
padding-left: 17px;
margin-top: 6px;
margin-bottom: 2px;
text-transform: none;
color: #545151;
font-family: Tahoma;
font-size: 12px;
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 14px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #F0F1DF url(images/a1.gif) no-repeat left 1px;
text-decoration: none;
margin-bottom: 8px;
text-transform: none;
color: #545151;
font-family: Tahoma;
font-size: 12px;
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 14px;
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;
}
