ul.treeview {
	background-color: transparent;
	padding: 0px;
	margin: 0px;
}
.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding: 0px;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	padding-left: 20px;
	list-style-type: none;
	background-color: #D8D2B2;
	border-bottom: dotted 1px #928C73;
	font-size: 1em !important;
	letter-spacing: normal;
	line-height: 30px;
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-image: url(/sites/howardparkwinescomau/assets/images/plus.gif);
	background-repeat: no-repeat;
	background-position: left 6px;
}
.treeview ul li.submenu { /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	background-image: url(/sites/howardparkwinescomau/assets/images/plus.gif);
	background-repeat: no-repeat;
	background-position: left 0px;
}


.treeview li.submenu ul { /*Style for ULs that are children of LIs (submenu) */
	display: none;
	background-color: #CDC69C;
	margin-right: 0px;
	margin-left: -20px;
	border-top: dotted 1px #928C73;
	margin-bottom: -1px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	border-bottom: dotted 1px #928C73;
}

.treeview .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	margin: 0px;
	padding: 0px;
	padding-left: 20px;
	line-height: 20px;
	font-size: .9em;
	background-color: #CDC69C;
}
.treeview .submenu ul li:last-child {
	border-bottom-style: none;
}
.treeview .submenu ul li ul li {
	cursor: default;
	margin: 0px;
	padding: 0px;
	background-color: #C2BA87;
	padding-left: 30px;
	line-height: 20px;
	font-size: 1em;
	margin-left: -20px;
}
