.treeview {

background: url('../img/menu/side_bg.png') center top;
width: 100%;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url('../img/menu/dash.png') no-repeat left 8px;
background-color: transparent;
list-style-type: none;
padding-left: 14px;
margin-bottom: 5px;
margin-left: 12px;
font-size: 12px;
font-weight: 500;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url('../img/menu/blue_right_arrow.png') no-repeat left 2px;
background-color: transparent;
cursor: hand !important;
cursor: pointer !important;
padding-left: 16px;
margin-left: 16px;
}



.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-left: 14px;
margin-left: 5px;
margin-top: 6px;
}


.treeview .submenu ul ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: white url('../img/menu/or_right_arrow.png') no-repeat left 2px;
background-color: transparent;
cursor: default;
padding-left: 14px;
margin-left: 5px;
margin-top: 6px;
}



