@charset "utf-8";
/* CSS Document */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 872px;
	height:317px;
/*	border:1px solid #fff;*/
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item 
.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	cursor:pointer;
	width:100px;
	height:75px;
}
*/
a.prev{
position:relative;
z-index:300;
float:left;
top:144px;
left:-45px;
margin-bottom:-144px;
width:41px;
height:41px;
background:url(../archivos/imagenes/leftScroll.png) top left no-repeat;
}
a.prev:hover{
background:url(../archivos/imagenes/leftScrollOver.png) top left no-repeat;
cursor:pointer;
}
a.next{
position:relative;
z-index:300;
float:right;
bottom:215px;
top:144px;
right:-41px;
margin-bottom:-144px;
width:41px;
height:41px;
background:url(../archivos/imagenes/rightScroll.png) top left no-repeat;
}
a.next:hover{
background:url(../archivos/imagenes/rightScrollOver.png) top left no-repeat;
cursor:pointer;
}
