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

	/* required settings */
	position:absolute;
	bottom: 50px;
	overflow:hidden;
	width: 100%;
	height:90%;
	margin-left:auto;
	margin-right: auto;
	z-index: 30;

	/* custom decorations */
}
.holder {width: 100%; text-align: center; z-index: 300;}
/*
	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:1000%;
	position:absolute;
	clear:both;
	overflow: hidden;
	top:10%;
	
}

.items div {
	float:left;
	width: 10%;
	height: 17%;
	padding: 0;
}

/* single scrollable item */
.scrollable img {

}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

.dot {text-align: right; width: 100%;bottom: 98px; position: absolute; background: url("../images/gall_bg.png") repeat scroll 0 0 transparent; bottom: 0; z-index: 300;}