﻿.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 470px;
	height:650px;
	margin-left: 50px;
	background:url(../imagenes/tronco_loncheras.jpg) no-repeat;
	color: #FFF;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
	width: 470px;
	height: 350px;
	margin: 0px;
	padding: 0px 00px 0px 0px;
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../imagenes/botones_slider.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px 10px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px; margin-left: 400px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 50px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }



/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

