.scrollable_description {
	float: left;
	font-size: 13px;
	color: rgb(102, 102, 102);
	margin-left: 30px;
}

.scrollable_description h3 {
	margin: 30px 0 10px 0;
	font-size: 16px;
	font-weight: 600;
	color: rgb(51, 51, 51);
}

.scrollable_container {
	margin: 30px 45px 0 40px;
	font-size: 13px;
	color: rgb(136, 136, 136);
}

.scrollable_container.small {
	margin:0 auto;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 13px;
	color: rgb(136, 136, 136);
}

/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 90%;
	height: 260px;
}

.scrollable.small{
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 90%;
	height: 260px;
}

/*
   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: 900px;
	cursor: pointer;
}

.items div .recent_container {
	width: 200px;
	max-height: 260px;
}

.items div .recent_container a{
	color: rgb(102,102,102);
}

.items div .recent_container .image {
	background: #fff;
}

.items div .recent_container .image img {
	width: 190px;
	height: 170px;
	margin: 0;
	border: 0;
	border-radius: 0 0 0 0;
	padding: 0;
}

.items div .recent_container .image img.aktiv {
	opacity: 0.8;
	-webkit-transition: opacity 300ms ease-out;
    -moz-transition: opacity 300ms ease-out;
    transition: opacity 300ms ease-out;
}

.items div .recent_container .image_description {
	width: 190px;
	padding: 10px 4px 10px 4px;
	background: #fff;
	border-radius: 0 0 2px 2px;
	border-top: 5px solid #4c4c4c;
	/*text-align: center;*/
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 0 1px
		rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.1);
}

.items div .recent_container .image_description.aktiv {
	border-top: 5px solid #fc7121;
	-webkit-transition: border-color 300ms ease-out;
    -moz-transition: border-color 300ms ease-out;
    transition: border-color 300ms ease-out;
    -webkit-appearance: none;
}

.items div .recent_container .image_description h4 {
	font-size: 11px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.items div .recent_container .image_description p {
	font-size: 13px;
	margin: 0;
	padding: 0;
}

/* single scrollable item */
.scrollable img {
	float: left;
	background-color: #fff;
	border: 1px solid #ccc;
	height: 75px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/* active item */
.scrollable .active {
	cursor: default;
}

.scrollable .items ul {
	list-style: none;
	margin: 5px 0 0 15px;
}

.scrollable.small .items ul {
	list-style: none;
	margin: 5px 0 0 9px;
}

.scrollable .items li {
}
