/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable { /* required settings */
	position:relative;
	overflow:hidden;
	width: 207px;
	height:150px;
	float:left;
}
/*
	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;
}
.items div {
	float:left;
	width:207px;
}
/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#eee;
	width:207px;
	height:150px;
}
.scrollable .active {
	position:relative;
	cursor:default;
}
#carousel-wrap {
	position:relative;
	background:url('../img/carousel-bgd.jpg') no-repeat 0 0 #fff;
	padding:19px 17px 18px;
	overflow:hidden;
	margin-bottom:25px;
}
#carousel-nav {
	position:absolute;
	bottom:20px;
	left:20px;
	z-index:99;
}
#carousel-nav .browse {
	width:15px;
	height:14px;
	float:left;
	display:block;
	cursor:pointer;
	margin:2px;
}
#carousel-nav .prev {
	background:url('../img/carousel-prev.png') 0 0 no-repeat;
}
#carousel-nav .next {
	background:url('../img/carousel-next.png') 0 0 no-repeat;
}