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

.arrowlistmenu{
font: 100% "Tekton Pro", "Comic Sans MS", Georgia;
width: 272px;
}

.arrowlistmenu .menuheader{
color: white;
background: #96b800 repeat-x center; /*bottom spacing between header and rest of content*/
text-transform: uppercase; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
	padding: 4px 0 1px 10px;
	font-size: 16px;
	font-weight: bold;
	margin: 5px 5px 5px 0;
}

.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: 8px; /*bottom spacing between each UL and rest of content*/
}

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

.arrowlistmenu ul li a{
color: #47106c; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px;
font-size: 100%;
	border-bottom-style: none;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center;
}

.arrowlistmenu ul li a:visited{
}

.arrowlistmenu ul li a:hover{
background-color: #cefd0b;
	color: #47106c;
}

</style>

