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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-image: url(images/arrow2.gif);
list-style-type: none;
padding-left: 0px;
margin-bottom: -2px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
list-style-image: url(images/arrow.gif);
cursor: hand !important;
cursor: pointer !important;
}

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

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

ul {
	text-indent: 0px;
	list-style-position: outside;
	/*list-style-image: url(images/list.gif);*/
	padding: 2px 5px 2px 8px;
	margin: 5px 5px 10px 8px;
	/*float: left;*/
	background-position: left middle;
	color: #685a54;
	line-height: 18px;
}

a.subnavList:link  { color : #41291f; text-decoration: none;
	text-transform: uppercase;
}
a.subnavList:visited { color : #41291f; text-decoration: none;
	text-transform: uppercase;
}
a.subnavList:hover   { color : #ffffff; text-decoration: none;
	text-transform: uppercase;
	background-color: #b4a27b;
	padding: 2px 3px;
}
a.subnavList:active  { color : #41291f; text-decoration: none;
	text-transform: uppercase;
}