
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 203px;
	height:124px;
	margin-right:20px;

	/* custom decorations */
	border:none;
	border:#D71920 solid 4px;
}

/*
	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;
	width:203px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin-top:0px;
	margin-left:0px;
	/*margin:20px 5px 20px 21px;*/
	/*background-color:#fff;*/
	padding:0px;
	/*border:1px solid #ccc;*/
	width:203px;
	height:124px;
	
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	position:relative;
	cursor:default;
}

.itemscontent {width:300px; margin:0; padding:0;  }
.scrtitel {height:16px; background-color:#FFF; padding-top:5px; padding-left:5px; padding-bottom:2px; margin-bottom:10px; overflow:hidden; }
.scrcontent {background-color:#FFF; height:170px; padding-top:5px; padding-left:0px; }
.scrlegende {padding-top:3px; background-color:#FFF; padding-left:5px; padding-right:0px; overflow:hidden; height:33px;}

.noscrcontent {background-color:#FFF; height:174px; padding-top:5px; padding-left:5px; overflow:hidden; }
.noscrcontent img {margin-left:17px; margin-top:5px; margin-bottom:7px;  width:257px; height:124px; }

.sideboxcontent  img {margin-left:5px; margin-top:5px; margin-bottom:7px;  width:228px;  }


