.accordionmenu {
	width: 180px; /*width of accordion menu*/
}

.accordionmenu  .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 14px Arial;
	color: white;
	background-color: black;
	border-bottom: 4px solid #D5C4A1;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 4px 0 4px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}

.accordionmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.accordionmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.accordionmenu ul li{
	padding-bottom: 2px; /*bottom spacing between menu items*/
}

.accordionmenu ul li a{
	color: #000;
	display: block;
	padding: 2px 0;
	padding-left: 12px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #D5C4A1;
	font-size: 90%;
}

.accordionmenu ul li a:visited{
	color: #000;
	text-decoration: none;
}

.accordionmenu ul li a:hover{ /*hover state CSS*/
	color: #000;
	background-color: #D5C4A1;
}