@charset "UTF-8";
/* CSS Document */

.arrowlistmenu{
	width: 170px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: ff9933;
	text-transform: uppercase;
	cursor: hand;
	cursor: pointer;
	border-bottom: 1px solid #683200;
	padding: 5px;
	background: url(images/arrowbullet.png) no-repeat center right; /*custom bullet list image*/

}
.arrowlistmenu .menuheader2 { /*CSS class for menu headers in general (expanding or not!)*/
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: ff9933;
	text-transform: uppercase;
	cursor: hand;
	cursor: pointer;
	border-bottom: 1px solid #683200;
	padding: 5px;
}

.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	color: ff9933;
	margin-bottom: 5px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	cursor: hand;
	cursor: pointer;
	text-decoration: none;
}

.arrowlistmenu .menuheader a:visited{ /*CSS class for menu headers in general (expanding or not!)*/
	color: ff9933;
	text-decoration: none;
}

.arrowlistmenu .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
	color: ffffff;
	text-decoration: none;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 5px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
	padding-bottom: 1px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #fac876;
	background: url(images/arrowbullet2.png) no-repeat center right; /*custom bullet list image*/
	display: block;
	padding: 5px 0;
	padding-left: 10px; /*link text is indented 19px*/
	text-decoration: none;
}

.arrowlistmenu ul li a:visited{
	color: #fac876;
	text-decoration: none;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	text-decoration: none;
	color: #FFFFFF;
}
a {
	color: #ff9933;
	text-decoration: none;
}

a:hover {
	color: #ffffff;
	text-decoration: none;
}

a:visiting {
	color: #ff9933;
	text-decoration: none;
}