
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 593px;
	height:141px;
	margin-left:auto;
	margin-right:auto;

}

/*
	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;
}
.scrollable .items div {
	float:left;
	width:593x;
}
/* single scrollable item */
.scrollable .items div img {
	background-color:#fff;
	padding:0px;
	width:100px;
	height:80px;
	border:0px none;
}
.scrollable .items div a {
	float:left;
	background-color:#fff;
	padding:0px;
	border:0px none;
	cursor:pointer;
	width:122px;
	margin-top: 7px;
	margin-right: 35px;
	margin-bottom: 7px;
	margin-left: 0px;
	font-size:12px;
	font-weight:bold;
	color:#204b77;
	text-align:center;

}
/* active item */
.scrollable .active {
	border:0px none;
	z-index:9999;
	position:relative;
}


