
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 213px;
	height:240px;
}

.scrollable-internas {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 213px;
	height:80px;
}

.scrollable-detalle {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 213px;
	height:89px;
}

.scrollable-home {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 213px;
	height:105px;
}

/*
	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, .scrollable-internas .items, .scrollable-detalle .items, .scrollable-home .items {
	/* this cannot be too large */
	width:100%;
	position:absolute;
	clear:both;
}


/* active item */ 
.scrollable .active, .scrollable-internas .active, .scrollable-detalle .active, .scrollable-home .active {
	z-index:9998;
	position:relative;
}

