.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
text-align:right;
margin-bottom: 5px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(/images/menu/list.gif) no-repeat right center;
list-style-type: none;
padding-right: 12px;
margin-bottom: 5px;
vertical-align: middle;
font-family:Tahoma;
font-size:12px;
}
.treeview li a,.treeview li a:link,.treeview li a:visited{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
font-family:Tahoma;
font-size:12px;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(/images/menu/plus_icon.gif) no-repeat right 1px;
cursor: hand !important;
cursor: pointer !important;
font-family:Tahoma;
font-size:12px;
margin-top: 5px;
}
.treeview li.submenu a,.treeview li.submenu a:link,.treeview li.submenu a:visited{ /* Style for LI that contains sub lists (other ULs). */
font-family:Tahoma;
font-size:12px;
margin-top: 5px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
margin-bottom: 5px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-family:Tahoma;
font-size:12px;
margin-bottom: 5px;
}
.treeview .submenu ul li a,.treeview .submenu ul li a:link,.treeview .submenu ul li a:visited{ /*Style for LIs of ULs that are children of LIs (submenu) */
font-family:Tahoma;
font-size:12px;
margin-bottom: 5px;
}