/* CSS Document */
#carrusel {
	width:605px;	
	height:540px ;
	margin:0 auto;
	overflow:hidden;
	bottom:0px;
	/* border:1px solid #ccc;*/
}

#paneles {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:605px;	
	height:480px;
	border:1px solid #ccc;
	background:#000066; 
	overflow:hidden;
}

/* eliminar estilos de lista, width: ancho del elemento x total de elementos */
/* Tamaño de la imagen-ancho * 11 elementos
	605px * 3 = 1815 */
#paneles ul {
	position:relative;
	left:0;
	top:0;
	list-style:none;
	margin:0;
	padding:0;
	width:1815px;
}

/* ancho del elemento; en este caso es un jpg de 140x132px + ancho de 418px para el div interno de <li>*/
#paneles li {
	width:600px;
	height:450px;
	float:left;
}

#paneles li img {
	float:left;
	padding:4px 0px 0px 8px;	
}

#paneles li div{
	padding-left:10px;
	width:600px; /* Para este caso debe ser el mismo ancho de "li"  */
	height:5px;	
	display: block;
	margin-bottom:5px;
	margin-top: 5px;
	margin-left:5px;
	padding-top:3px;
	clear:both;
    float:left;
	border: 0px solid #f3f3f3;
	
}

#paneles li div p{
	color:#FFFFFF;
}	
/* estilo para los botones "anterior" y "siguiente" */
#carrusel #botones {
	padding:0 0 5px 270px; 
}

#carrusel #botones a {
	display:block;
	width:31px;
	height:32px;
	text-indent:-999em;
	float:left;
	outline:0;
}

#carrusel #botones a#anterior {
	background:url(images/arrow.gif) 0 -31px no-repeat;
}

#carrusel #botones a#anterior:hover {
	background:url(images/arrow.gif) 0 0 no-repeat;
}

#carrusel #botones a#siguiente {
	background:url(images/arrow.gif) -32px -31px no-repeat;
}

#carrusel #botones a#siguiente:hover {
	background:url(images/arrow.gif) -32px 0 no-repeat;
}

.clear_car {clear:both;}

#carrusel p.unidad, #carrusel li.unidad, #carrusel div.unidad {
    color: #000066;
    font-family: Arial;
    font-size: 14pt;
	font-weight:bold;
    margin-right: 0;
    margin-top: 12px;
    text-align: left;
    text-indent: 0;
    margin-bottom: 6pt;
    line-height: 18px; 		
}

p.telefono, span.telefono, div.telefono {
    color: #b00808;
    font-family: Arial;
    font-size: 14pt;
	font-weight:bold;
    margin-right: 0;
    margin-top: 16px;
    text-align: left;
    text-indent: 0;
    margin-bottom: 6pt;
    line-height: 24px; 		
}
