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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 830px;
	height:125px;
	padding: 5px;
	/* custom decorations */
	border:0;
	background: #e5e5e5 url(/img/global/gradient/h300.png) repeat-x;
}

/*
	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;
	height: 125px;
	background: #d6d6d6 url(/img/global/gradient/h300.png) repeat-x;
}

/* single scrollable item */
.scrollable img {
border: 0;
margin:20px 18px 20px 0px;
width: 123px;
height: 82px;
background-color:#fff;
padding:1px;
}

.scrollable img  a{
	float:left;
	border: 0;
	display:block;
overflow:hidden;

}

/* active item */
.scrollable .active {

}



