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

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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: transparent;
	list-style-type: none;
	padding-left: 10px;
	margin-bottom: 3px;
	font-weight: bold;
	font-size: 11px;
	width: auto;
}

.treeview a {
  color: #000; 
  text-decoration: none; 
}

.treeview a:hover { 
  text-decoration: underline; 
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: transparent url(images/nuoli.gif) no-repeat left 3px;
	cursor: hand !important;
	cursor: pointer !important;
	font-size: 11px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
}

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

.treeview .submenu ul li ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
	font-weight: normal;
	font-size: 11px;
}

.expand_all {
	color: #000; 
	text-decoration: none;
	font-size: 12px;
}

.contract_all {
	color: #000; 
	text-decoration: none;
	font-size: 12px;
}
