.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
position: relative;
font-size:13px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(/images/rightSidePanelBG.jpg) repeat-y left center;
color:#FFFFFF;
list-style-type: none;
padding: 2px 0px 2px 0px;
margin-bottom: 0px;
font-size:13px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(/images/rightSidePanelBG.jpg) repeat-y left 1px;
color:#FFFFFF;
cursor: pointer !important;
font-size:13px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-size:13px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-size:13px;
}