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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 265px;
	height:200px;

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

/* single scrollable item */

.scrollable .items div {
float: left;
width: 115px;
padding: 0;
margin:0 8px 0 8px;
}

.scrollable .items div p {
text-align:center;
clear:both;
margin:0 auto;
width: 115px;
padding:0;
}

.scrollable .items div a:link, .scrollable .items div a:visited, .scrollable .items div a:active, .scrollable .items div a:hover {
text-decoration: none;
font: normal 8pt Arial, Helvetica, sans-serif;
color: #666666;
}

.scrollable img {
	float:left;
	background-color:#fff;
	padding:0px;
	border:1px solid #eee;
	margin: 0 0 10px 0;
}

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

.container_scrollerbox {
margin: 0;
padding: 0;
width: 330px;
height: 200px;
text-align:center;
vertical-align:middle;
}

.container_scroll {
width: 330px;
}