 /* accordion menu */    .arrowlistmenu {	width: 160px; /*width of accordion menu... expected to be in the left Column */	height: 270px; /*fixed height of accordion menu... can be made to vary if omitted. 187 is picture */ 	margin: 0px 0px 1px 35px; 	font: normal bold 10px Arial;}     .arrowlistmenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/	font: normal bold 10px Arial;	color: #025CBF;	text-transform: uppercase;	cursor: pointer;	margin: 6px 0px 6px 0px;	padding: 0px 0px 0px 0px;}.arrowlistmenu .openheader { /*CSS class to apply to expandable header when it's expanded*/	color: #8B3674;}.arrowlistmenu ul { /*CSS for UL of each sub menu*/	list-style-type: none;	margin: 0px 0px 0px 0px;	padding: 0px 0px 0px 0px;}.arrowlistmenu ul li {	margin: 0px 0px 0px 0px;	padding: 0px 0px 0px 0px;	}.arrowlistmenu ul li a {	color: #606060;	display: block;	text-decoration: none;	font-weight: bold;	border-bottom: 0px;	margin: 0px 0px 0px 0px;	padding: 0px 0px 2px 12px;	}.arrowlistmenu ul li a:visited {	color: #606060;}.arrowlistmenu ul li a:hover { 	color: #8B3674;}