@charset "utf-8";
/* CSS Document */
.arrowlistmenu{
width: 180px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial;
color: #000000;
background: black url(fondo_titulo.png) repeat-x center left;
margin-bottom: 2px; /*bottom spacing between header and rest of content*/
/*text-transform: uppercase;*/
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*/
background-image: url(fondo_titulo_select.png);
color: #000000;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 2px;
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*/
font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif;
font-size:14px;
font-weight:800px;
word-spacing:0.1em; 
}

.arrowlistmenu ul li a{
color: #9C3630;
/*background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 0px 0;
padding-left: 12px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px none #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: #9C3630;

}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #9C3630;
background:url(../imagenes/marca_naranja.gif) no-repeat  center left; /*custom bullet list image*/
background-color: #FAFAFA;/*F3F3F3*/
}

.arrowlistmenu ul li a:active { /*hover state CSS*/
color: #9C3630;
background-color:#F7F0E6;
}
