.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/menu_main_icn.gif) no-repeat left top;
font:Arial, Helvetica, sans-serif;
font-size:12px;
list-style-type: none;
padding-left: 15px;
margin-top: 0px;
margin-bottom: 3px;
text-align:left;
margin-left:-15px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(images/menu_main_icn.gif) no-repeat left top;
font:Arial, Helvetica, sans-serif;
font-size:12px;
cursor: hand !important;
cursor: pointer !important;
text-align:left;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.treeview li.active ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
color:#FF0000;
text-align:left;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
background: url(images/menu_sub_icn.png) no-repeat left 5px;
font:Arial, Helvetica, sans-serif;
text-align:left;
font-size:12px;
margin-left:0px;
}
