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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 880px;
	height:100px; margin:0 auto;

	/* custom decorations */
	border:0px solid #ccc;
	background:none;
}

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

.items1 div {
	float:left;
	width:880px;
	margin:0 auto;
	margin-left:24px;
}

/* single scrollable1 item */
.scrollable1 img {
	float:left;
	margin:5px 17px 15px 10px;
	background:none;
	padding:0px;
	border:0px solid #ccc;
	width: auto;
	height: auto;
}

/* active item */
.scrollable1 .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}


