/* CSS Document */
/* Carousel */
		
#carousel {
	position: relative; /* Necesario */
	overflow: hidden; /* Necesario */
	height: 240px;
	margin-left:35px;
	/*background:#5B5B5B url(carousel-bg.png) bottom left repeat-x;*/
}

#carousel .belt {
	position: absolute; /* Necesario */
	left: 0;
	top: 0;
	margin:0 10px 10px 0;
}

#carousel .panel {
	width:220px;
	float: left; /* Necesario */
	overflow: hidden;
	margin: 8px;
	padding:3px;
	border:1px solid #5B5B5B;
	background:#ED2025 url(carousel-panel-bg.png) bottom left repeat-x;
}

#carousel .panel .panel-text {
	padding-top:3px;
	font-size:12px;
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
}

#carousel .panel .panel-text a {
	color:#FF8B27;
	text-decoration:none;
}

#carousel .panel .panel-text a:hover {
	color:#FF8B27;
	text-decoration:underline;
}

			/* Botones del carousel */
			
.button-prev {
	height:240px;
	width:35px;
	float:left;
	background:#FF8E2B;
	-moz-border-radius:10px 0 0 10px;
}

.button-prev a {
	display:block;
	padding:5px;
	margin-top:105px;
}

.button-next {
	height:240px;
	width:35px;
	float:right;
	background:#FF8E2B;
	-moz-border-radius:0 10px 10px 0;
}

.button-next a {
	display:block;
	padding:5px;
	margin-top:105px;
}


a img {
	border:none;
}

