@charset "utf-8";
/* CSS Document */
#slider {
	margin:0;
	padding:0;
	list-style:none;
}
#slider ul, #slider li {
	margin:0;
	padding:0;
	list-style:none;
}
/* 
    define width and height of list item (slide)
    entire slider area will adjust according to the parameters provided here
*/
#slider li {
	width:900px;
	height:235px;
	overflow: hidden;
}
p#controls {
	margin:0;
	position:relative;
}
#prevBtn, #nextBtn {
	display:block;
	margin:0;
	overflow:hidden;
	width:30px;
	height:30px;
	position:absolute;
	left:10px;
	top:-110px;

}
#nextBtn {
	right:885px;
}
#prevBtn {
	left:60px;
}
#prevBtn a {
	display:block;
	width:30px;
	height:55px;
	background:url(images/flechaprev.png) no-repeat 0 0;
}
#prevBtn a:hover {
	display:block;
	width:30px;
	height:55px;
	background:url(images/flechahoverprev.png) no-repeat 0 0;
}
#nextBtn a {
	display:block;
	width:30px;
	height:55px;
	background:url(images/flecha.png) no-repeat 0 0;
}
#nextBtn a:hover {
	display:block;
	width:30px;
	height:55px;
	background:url(images/flechahover.png) no-repeat 0 0;
}
#sidebar{/*El clear left ees para q sigan flotando a la izq pero abajo*/
	width:310px;
	background-color:#ACB6C1;
	float:left;
	margin-bottom:10px;
	clear:left;
}