/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/



.scrollable {

	/* required settings */
	position:relative;
	overflow: visible;
	width: 600px;
	height: 104px;
	margin-top: 0 !important;
	/* custom decorations */
	border: 0px !important;
	background: none;
	z-index: 30 !important;
	float:left;
	text-align: left;
}

/*
	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: 600px;
	border: 7px solid;
	overflow: hidden;
	text-align: left !important;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin: 0 !important;
	background-color: transparent;
	padding: 0 !important;
	border:0px solid !important;
	width:150px;
	height:104px !important;
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

/*.scrollable .items a {
	padding: 0px;
	display: inline-block;
	border: 0px solid #333;
}*/

.scrollable a:hover {
	border: 0px solid #fff;
}

/* active item */
.scrollable .active {
	border: 0px !important;
	position:relative;
	cursor:default;
}


