
/*
	root element for the sonderangebote-sonderagebote-box.
	when scrolling occurs this element stays still.
*/
.sonderagebote-box {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 220px;
	height:212px;
}

/*
	root element for sonderangebote-sonderagebote-box items. Must be absolutely positioned
	and it should have a extremely large width to accomodate sonderangebote-sonderagebote-box items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.sonderagebote-box .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:680px;
}

/* single sonderangebote-sonderagebote-box item */
.sonderagebote-box img {
	float:left;
	margin:5px 5px 0 0;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:200px;
	height:200px;

}

/* active item */
.sonderagebote-box .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



