/* CSS Document */
.arrowlistmenu{
width: 195px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font-family:Arial, Helvetica, sans-serif, Tahoma;
font-size:11px;
color: #000000;
background:url(images/titlebar.png) repeat-x center left;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
padding: 6px 0px 6px 20px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
border-bottom:1px solid #999999;
font-weight:bold;
}
.menuprod{
font-family:Arial, Helvetica, sans-serif, Tahoma;
font-size:11px;
color: #000000;
font-weight:bold;}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(images/titlebar-active.png);
}
.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px;/*bottom spacing between each UL and rest of content*/
}
.arrowlistmenu ul li{
padding-bottom: 1px; /*bottom spacing between menu items*/
background:url(images/bg.png);
}
.arrowlistmenu ul li a{
color: #666666;
display: block;
padding: 7px 0;
padding-left: 31px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
font-size: 11px;
font-family:Arial, Helvetica, sans-serif, Tahoma;
background:url(images/bg.png);
}

.arrowlistmenu ul li a:visited{

}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #FF0000;

}


