
.flowplayer_circular{
	margin-top: 10px;
	height: 175px;
	width: 550px;
	position: relative;
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 548px; /* 680 */
	height:165px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(verlauf.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;
}

.scrollable .items vorher {
	display: table-cell;
	float:left;
	margin:20px 5px 20px 21px;
	padding:2px;
	border:1px solid #ccc;	
	width: 140px;
	height: 140px;
	background-color: #ffffff;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	text-align: center;
	vertical-align: middle;
}

.scrollable .items .outer {
	display: table;
	#position: relative; overflow: hidden;
	
	float:left;
	margin:10px 6px 10px 24px;
	oldmargin:20px 5px 20px 21px;
	padding:2px;
	border:1px solid #ccc;	
	width: 140px;
	height: 140px;
	background-color: #ffffff;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .items .outer:hover {
	border:1px solid #000;
}

.scrollable .items .middle {
	#position: absolute;
	#top: 50%;
	display: table-cell;
	vertical-align: middle;
	width: 140px;
	text-align: center;
}

.scrollable .items .inner {
	#position: relative;
	#top: -50%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 140px;
}

/* single scrollable item */
.scrollable img {
	background-color:#fff;
	cursor:pointer;
	nowidth:100px;
	noheight:130px;
	

}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



