body {
	margin:0;
	padding:0;
}

.scrollable1 {

	/* required settings */
	 margin:0;
	 padding:0;
	position:relative;
	overflow:hidden;
	width:200px;
	height:150px;
}

/*
	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.
*/
.scrollable1 .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:200px;
}

/* single scrollable item */
.scrollable1 img {
	float:left;
	margin:0;
	background-color:#fff;
	padding:0;
	width:200px;
	height:150px;
}

/* active item */
.scrollable1 .active {
	position:relative;
	cursor:default;
}

.scrollable2 {

	/* required settings */
	 margin:0;
	 padding:0;
	position:relative;
	overflow:hidden;
	width:200px;
	height:180px;
}

/*
	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.
*/
.scrollable2 .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:200px;
}

/* single scrollable item */
.scrollable2 img {
	float:left;
	margin:0;
	background-color:#fff;
	padding:0;
	width:200px;
	height:180px;
}

/* active item */
.scrollable2 .active {
	position:relative;
	cursor:default;
}

.scrollable3 {

	/* required settings */
	 margin:0;
	 padding:0;
	position:relative;
	overflow:hidden;
	width:200px;
	height:300px;
}

/*
	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.
*/
.scrollable3 .items {
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:200px;
}

/* single scrollable item */
.scrollable3 img {
	float:left;
	margin:0;
	background-color:#fff;
	padding:0;
	width:200px;
	height:300px;
}

/* active item */
.scrollable2 .active {
	position:relative;
	cursor:default;
}