ul.treeview {
background: url(/js/jsTree/icons/line.gif) repeat-y right 5px;
margin: 0;
padding: 0;
font-size: 16px;	
}

.treeview ul{ /*CSS for Simple Tree Menu*/
background: url(/js/jsTree/icons/line.gif) repeat-y right center;
margin: 0;
padding: 0;
padding-right: 0px;
font-size: 16px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(/js/jsTree/icons/page.gif) no-repeat right center;
list-style-type: none;
padding-right: 15px;
margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(/js/jsTree/icons/plus.gif) no-repeat right 6px;
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;
}

