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

.list1_arrowlistmenu {
 /*width of accordion menu*/
}

.list1_arrowlistmenu .list1_menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: pointer;
}

.list1_arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/

}

.list1_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*/
}

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

.list1_arrowlistmenu ul li a {
 
background: url(../image/C23-list-bullet.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;

border-bottom: 1px solid #dadada;
color:gray;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}

.list1_arrowlistmenu ul li a:visited{}

.list1_arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #EE2930;
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(0%); /* Chrome 19+ & Safari 6+ */

}

h3.list1_menuheader {
	color:#FFF;
	}
	
h3.list1_menuheader:hover {
	color:#000 !important; 
	}