
.detail_img {
	padding:4px;
	border:1px solid #999999;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}


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

#scrollposition {
	border:0px solid #990000;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow: hidden;
	width: 900px;
	height:50px;

	/* custom decorations */
	border:0px solid #333333;
/*	background:url(h300.png) repeat-x; */

	margin:0 auto 15px auto;
}

.scrollable:hover {
/*	background-color:#666666; */

}

.scrollable .items {
	/* this cannot be too large */
	width:30000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable  .items img  {
	float:left;
	margin:0px 22px 0px 0px;
	padding:4px;
	border:1px solid #ccc;
	cursor:pointer;
	width:120px;
	height:40px;
	
	background-color:#f2f2f2; 
	
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* neu fuer links */
.scrollable a {
	float:left;
	margin:0px;
	padding:0px;
	border:0px solid #ccc;
}


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



