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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 3px;
	background-image: url(/share/images/site/arrow2.png);
	background-repeat: no-repeat;
	background-position: left 5px;
	width: 200px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.treeview li.submenu li { background-image: url(/share/images/site/white.png); }
.treeview li a {
	color: #578CCC;
	font-weight: normal;
	margin-bottom: 5px;
	line-height: 20px;
	text-transform: uppercase;
	font-family: Cuprum;
	font-size: 18px;
}
.treeview li > ul > li > a { font-weight: normal; }
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-image: url(/share/images/site/arrow3.png);
	background-repeat: no-repeat;
	background-position: left 7px;
	
}


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

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
color: #000000;
}
