/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.featured {
	width: 968px;
	left: 0px;
	position:relative;	
}

div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 968px;	
	height:220px;	
	float: left;		
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.scrollable div.items div {
	/* custom decoration */
}
.aktionsbox {
	position:relative;
	float:left;
	width:271px;
	height:auto !important;
	height:157px;
	min-height:157px;
	padding:10px;
	margin:10px 0 0 20px;
	border-bottom:#D4D9DB 10px solid;
	border-left:#D4D9DB 1px solid;
	border-right:#EBEBEB 10px solid;
	border-top:#D4D9DB 1px solid;
	background-color:#fff;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

