.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:none !important;
padding-left: 20px !important;
list-style-type: none;
color: #000;

}



.treeview li ul li {
font-weight:normal;
color:#494949;
background: none;
list-style-type: none;
	margin: 0px !important;
	padding: 0px !important;

}

.treeview li.treesubmenu{ /* Style for LI that contains sub lists (other ULs). */
background:url(/images/bullet_faq.gif) no-repeat left 3px !important;

margin-right: 5px;
cursor: hand !important;
cursor: pointer !important;
}


.treeview li.treesubmenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
	margin: 0px !important;
	padding: 0px !important;

}

.treeview .treesubmenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;

	margin: 0px !important;
	padding: 0px !important;

}

