/* CSS Document */

/* * {
	margin:0;
	padding:0;
	list-style:none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin:10px;
}
*/

#basic-accordian{
	/*border:1px solid #6699FF; /*  Es el borde del div era color plomo: 1px solid #EEE*/
	padding:0px; /*  Es el espaciamiento entre el div y otro div era 5px */
	width:241px; /* ancho del Div */

}

.accordion_headings{
	padding:5px;
	/*background:#99CC00;
  	  background-image: url(../../img/web/gradient_tab_blue.gif);*/
		
	font-weight: normal;
	font-size: 14px;
	background-image: url(../../img/web/boton_inactive.gif); /* Cabeceras Inactivas*/
	background-repeat: repeat-x;
	border-bottom: 1px solid #71ADD0;
	
	color:#000000;
	border:0px solid #FFF;
	cursor:pointer;
	font-weight:bold;
}


.accordion_headings:hover, .accordion_headings.over {

	background-image: url(../../img/web/boton_mouse.gif);
 /*	background: #FFFF99; Color del hover del mouse*/
}

.accordion_child{
	padding:0px; /*  Es el ancho del contorno de separacion  */
	background: #FFFFFF ; /*  Es el fondo del texto del acordeon, era color plomo #EEE */
}

.header_highlight{
	/* background: #990000;
		background-image: url(../../img/web/gradient_tab_orange.gif);*/
				background-image: url(../../img/web/boton_active.gif);
	color: #FFFFFF;

}
/* y termine con */
