﻿.accordionmenu {
	padding-left: 6px;
	width: 180px; /*width of accordion menu*/
	color: #bf9753;
}

.accordionmenu  .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 16px trebuchet MS, Arial;
	color: #ffffff;
	background: url('../images/navbuttonbg.jpg') repeat-x;	
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	font-variant: small-caps;
	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: #bf9753;
	display: block;
	padding: 2px 0;
	padding-left: 12px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-family: 'Trebuchet MS', Arial, sans-serif;
	font-size: 110%;
}

.accordionmenu ul li a:visited{
	color: #bf9753;
	text-decoration: none;
}

.accordionmenu ul li a:hover{ /*hover state CSS*/
	color: #bf9753;
	text-decoration: underline;
}