/* Start of Accordian Menu Script */
.arrowlistmenu{
	width: 200px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-size: 14px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #933;
	background: #fff url(../images/backgrounds/ddaccordian_titlebar.jpg) repeat-x bottom left;
	margin-bottom: 0; /*bottom spacing between header and rest of content*/
	text-transform: none;
	padding: 8px 0 8px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	letter-spacing: 1px;
}
.arrowlistmenu .menuheader a, .arrowlistmenu .menuheader a:visited, .arrowlistmenu .menuheader a:hover {
	color: #933;

}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(../images/backgrounds/ddaccordian_active.jpg);
	color: #fff;
	background-color: #D57E7D;
	background-repeat: repeat-x;
	background-position: left bottom;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
	padding: 0; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #222;
	background: url(../images/icons/ddaccordion_bullet.gif) no-repeat top left; /*custom bullet list image*/
	letter-spacing: 1px;
	display: block;
	padding: 5px 0;
	padding-left: 24px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 90%;
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
}

.arrowlistmenu ul li a:visited{
	color: #222;
	text-decoration: none;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #fff;
	text-decoration: underline;
}

/* End of Accordian Menu Script */

