
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	/**/
position:relative;
	overflow:hidden;
	width: 685px;
	height:95px;
	/* custom decorations */
}

/*
	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;
	height:95px;
	/*
	clear:both;*/
	width:595px !important;
	float:left;
	
}
.scrollable img {
border: 0px;
}
/* single scrollable item */
.scrollable a {
	float:left;
	/*padding:5px;*/
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	/**/
	color:#0D0D0D;
	background-color:transparent;
	width:150px;
	height:90px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	z-index:9999;
	position:relative;
}


.scrollable .noscroll{
background-image:url(img/arrows-grey.jpg);
background-repeat:no-repeat;
}
/* next / prev buttons */
a.prev, a.next {
background:url(img/arrows.jpg) no-repeat;
	display:block;
	width:34px;
	height:72px;
	float:left;
	margin:15px 10px;
	cursor:pointer;
	font-size:1px;
}

a.prev {
	background-position: 0px 0px; margin-left: 0px;
}

a.prev:hover {
	background-position: 0px 0px; margin-left: 0px;
}

a.next {
	background-position: -34px 0px; clear:right; margin-right: 0px;
}

a.next:hover {
	background-position: -34px 0px; clear:right; margin-right: 0px;
}
a.disabled{
visibilty: hidden !important;
}
