#scrollBox { background-color: #e7ebfb; width: 572px; height: 154px; }
.scrollButton { display: block; width: 20px; text-align: center; padding: 72px 0px; }
.scrollButton img { border-style: none; }
.scrollButton.prev { float: left; }
.scrollButton.next { float: left; }


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

	/* required settings */
	position:relative;
	overflow:hidden;

	/* custom decorations */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	float: left;
	width: 530px;
	height: 154px;
	border-style: solid;
	border-color: #FFFFFF;
	border-width: 0px 1px;
}

/*
	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;
	margin: 6px 12px;
	width: 506px;
}

.items H2 {
	line-height: 20px;
	font-weight: bold;
	color: #cc0000;
	margin: 0px;
	margin-bottom: 3px;
}
.scrollable H2 a {
	font-size: 12px;
}

.scrollable img {
	float: left;
	margin: 2px 12px 4px 0px;
	border-style: solid;
	border-width: 1px; border-color: #000000;
}

.scrollable a {
	font-weight: normal;
	font-size: 11px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

