/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 620px;
	height:75px;
	text-align: center;
}

/*
	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:30000em;
	position:absolute;
	clear:both;
	left: 2px;
	top: -15px;
	text-align: center;
	height: 50px;
}

/* single scrollable item */
.scrollable img {
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 22px;
	margin-right: 35px;
	margin-bottom: 20px;
	margin-left: 20px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	padding: 2px;
}

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

