
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
    margin:auto;
    width:870px;
    height:500px;
}

div.scrollable-div {
    width:433px;
    height:484px;
}

/*
	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 div.items div {
	float:left;
	border:1px solid #aaa;
	cursor:pointer;
    position:relative;
}

.text-preview {
    position:absolute!important;
    border:none!important;
    font-size:11px!important;
}

#scroll-controls {
    width:200px;
    margin:auto;
    text-align:center;
}

#scroll-controls img {
    cursor:pointer;
    margin-top:3px;
}

#scroll-controls .prevPage {
    padding-right:50px;
}

#scroll-controls .nextPage {
    padding-left:50px;
}
