.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)*/
padding-bottom:5px;
margin: 0;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
background: url(images/li_bg.gif) no-repeat;
padding-top:8px;
padding-bottom:5px;
margin-top:2px;
margin-bottom:0px;
list-style:none;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
list-style-image:url(images/double_arrow.gif);
margin-top:10px;
margin: 0;
margin-left:25px;
border:0px solid red;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-top:5px;
padding-top:3px;
}

.treeview .submenu ul li ul{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
padding-top:10px;
margin-top:2px;
margin-bottom:2px;
}


.treeview .submenu1 ul li ul li{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
list-style-image:url(images/double_arrow.gif);
margin-top:10px;
margin: 0;
margin-left:25px;
border:0px solid red;
}

.treeview .submenu1 ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-top:5px;
}

.treeview1 .submenu1 ul li ul{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}
.treeview1 .submenu1 ul li ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: hand !important;
cursor: pointer !important;
}