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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../images/arrow.jpg) no-repeat 8px 8px;
list-style-type: none;
padding:5px 0px 8px 20px;
font-weight:bold;
border-bottom:1px solid #C7C5C5;
}
.treeview li ul
{
margin:0;
padding:10px 0 0 0;
}
.treeview li li{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/arrow.jpg) no-repeat 0px 8px;
border:none;
padding:5px 0px 8px 13px;
}


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

.treeview ul.submenu li{ /*Style for LIs of ULs that are children of LIs (submenu) */
font-weight:normal;
padding:5px 0px 3px 0px;
border:none;
background:none !important;
}

.treeview a.active{color:#212f5c font-weight:bold;}