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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	/*background: white url(list.gif) no-repeat left center;*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	list-style-type:none;
	padding-left: 0px;
	padding-top:0px;
	line-height:19px;
	margin-bottom: 5px;
	text-decoration: none;
	/*background-image:url(../images/menubg.png);
	background-repeat: repeat;*/
}
.treeview a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	/*background: white url(list.gif) no-repeat left center;*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	list-style-type:none;
	padding-left: 0px;
	padding-top:5px;
	margin-bottom: 2px;
	text-decoration: none;
	/*background-image:url(../images/menubg.png);
	background-repeat: repeat;*/
	color:#000000;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	/*background: white url(closed.gif) no-repeat left 1px;*/
	cursor: hand !important;
	cursor: pointer !important;
	text-decoration:none;	
	list-style-image:url(../images/arrow.png);
	/*background-color:#F5F5F5;
	display:block;
	height:48px;*/
	/*background-image:url(../images/menubg.png);
	background-repeat: repeat;*/
}

.treeview li.submenua{ /* Style for LI that contains sub lists (other ULs). */
	/*background: white url(closed.gif) no-repeat left 1px;*/
	cursor: hand !important;
	cursor: pointer !important;
	text-decoration: none;
	list-style-image:url(../images/arrow.png);
	/*background-image:url(../images/menubg.png);
	background-repeat: repeat;*/
}
.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	padding-left:10px;
	text-decoration: none;
	list-style:none;
	background:none;
	
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	font-size:11px;
	text-decoration: none;
	background:none;
}

