@charset "utf-8";
/* CSS Document */

body{
}

h5 {
margin:0;
padding:0;
}

.arrowlistmenu{
	width: 340px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px Arial;
	color: #036A3B;
	margin-bottom: 1px;
	padding: 2px 0 2px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0 0 1px 0;
	padding: 0;
}

.arrowlistmenu ul li{
	font-family: Arial, Helvetica, sans-serif;
}

.arrowlistmenu ul li a{
color: #405b79;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
/*display: block;*/
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #405b79;
font-size:10px;
}

.arrowlistmenu ul li a:visited{
color: #405b79;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #036A3B;
}

