.treeview ul { /*CSS for Simple Tree Menu*/
color: white;
padding-left: 00px;
margin-left: 00px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
/*padding-left: 12px;*/
margin-bottom: 3px;
color: white;
margin-left: 20px;
line-height: 15px;
padding:0;
}

.treeview li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
margin-left: 10px;
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
background: url(/menu/closed.gif) no-repeat left 4px;
color: white;
cursor: hand !important;
cursor: pointer !important;
/*padding-left: 10px;*/
margin-left: 20px;
}

.treeview li.submenu a{ /* Style for LI that contains sub lists (other ULs). */

margin-left: 10px;
}


.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;
padding: 0;
margin: 0;
display: block;
}

.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
padding: 0;
margin: 4px 0 0 10px;
display: block;
}
