<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
width: 300px; /*width of accordion menu*/
/*el ancho del menu*/
height: 360px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 16px Arial;
color: #ff8800;
/*background: url(../Images/botones/1sample.gif); /*url(file:///C|/Documents and Settings/fhauret/Desktop/acordion/titlebar.png) repeat-x center left;*/
/*aca le damos la imagen para el nodo padre*/
margin-bottom: 2px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 2px 0px 0px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
text-align:center;

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
/*background-image:url(../Images/botones/1mdivtimedia.gif); /*url(file:///C|/Documents and Settings/fhauret/Desktop/acordion/titlebar-active.png);*/
/*background-image:url(../Images/imagenes/botones/b01a.gif);
/*aca le damos la propiedad que queremos que se muestre cuando el nodo padre esta selecionado*/
}

.arrowlistmenu div{ /*CSS for div of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px; /*bottom spacing between each div and rest of content*/
}

.arrowlistmenu div li{
padding: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu div li a{
/*color: #99cc00;*/
/* url(file:///C|/Documents and Settings/fhauret/Desktop/acordion/arrowbdivlet.png) no-repeat center left;*/ /*custom bdivlet list image*/
/*aca le damos la propiedad de los item del submenu */
display: block;
padding: 0px 0;
padding-left: 2px; /*link text is indented 19px*/
text-decoration: none;
/*font-weight: bold;
/*border-bottom: 1px solid #dadada;
/*font-size: 90%;*/
text-align:left;

font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #CCCCCC;

}

.arrowlistmenu div li a:visited{
color:  #CCCCCC;
}

.arrowlistmenu div li a:hover{ /*hover state CSS*/
/*color: #FFFFFF;*/     /*color de la letra del submenu cuando mouseover */
background-color: #000000;   /*color de fondo de los elementos del menu*/

font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #FF6600;
}

.categoryitems{height:280px;}</pre></body></html>