.treeview ul{ /*CSS for Simple Tree Menu*/
margin-left: 0; 
padding-left: 2.5em;
margin-top:0;
margin-bottom:0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style: none;
	margin-left: 0;
	padding-left: 0px;
	text-indent: 0px;
padding-bottom:0px;
color:#22483F;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */

cursor: hand !important;
cursor: pointer !important;
background-color:#FFFFFF;
font-size:11.5px;
font:verdana;
	margin-left: 10;
	padding-left: -1em;
	text-indent: -1em;
color:#22483F;
padding-bottom:0px;


}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-size:10px;
font:verdana;
	margin-left: 10;
	padding-left: 5px;
	text-indent: 0px;
color:#22483F;
padding-bottom:0px;

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
font-size:10px;
font:verdana;
	margin-left: 10;
	padding-left: 15px;
	padding-top:0px;
	text-indent: 0;
color:#22483F;
padding-bottom:0px;
}

