#menu { /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding: 0px;
}
#menu li {
	list-style-type: none;
}
#menu li a:link,#menu li a:visited { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: url(../images/items.gif) no-repeat left center;
	background-position: 10px 4px;
	padding-left: 22px;
	margin-bottom: 3px;
	color: #006699;
}

#menu li a:hover,#menu li a:active { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: url(../images/itemshover2.gif) no-repeat left center;
	background-position: 10px 4px;
	padding-left: 22px;
	margin-bottom: 3px;
	color: #CB4721;
}

#menu li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	list-style-type: none;
	background: url(../images/arrows.gif) no-repeat left 1px;
	background-position: 10px 4px;
	padding-left: 22px;
	color: #006699;
	cursor: hand !important;
	cursor: pointer !important;
}

#menu li.submenu:hover{ /* Style for LI that contains sub lists (other ULs). */
	list-style-type: none;
	background: url(../images/arrowshover.gif) no-repeat left 1px;
	background-position: 10px 4px;
	padding-left: 22px;
	color: #CB4721;
	cursor: hand !important;
	cursor: pointer !important;
}

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

#menu .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	list-style-type: none;
}