
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/scrollbar/back.jpg) no-repeat;
	float:left;
	margin:0 0px 0 0;
	cursor:pointer;
}
a.next, a.nextPage {
	display:block;
	width:19px;
	height:26px;
	background:url(../images/scrollbar/next.jpg) no-repeat;
	float:left;
	margin:0 0 0 0px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.prevPage:hover {
	background:url(../images/scrollbar/back_hv.jpg) no-repeat;
}
a.next:hover, a.nextPage:hover {
	background:url(../images/scrollbar/next_hv.jpg) no-repeat;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/scrollbar/next.jpg);
	clear:right;
}


/*##################################*/
/* root element for the whole scrollable setup */
div.scrollable {
	position:relative;
	overflow:hidden;
	width: 790px;
	height:150px;
	padding: 0;
	margin: 0;
	border: 0px solid lime;
}

/*
	root element for scrollable items. It is
	absolutely positioned with large width.
*/
#thumbs {
	position:absolute;
	width:20000em;
	clear:both;
	border:0px solid #222;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:60px;
}



/* single item */
#thumbs div {
	float:left;
	width:150px;
	height:150px;
	background-color:#2f2f2f;
	color:#858585;
	border:0px solid #333;
	margin: 0 10px 0 0;
	padding: 0px;
	cursor:pointer;
}
#thumbs div .container {
	width: 131px;
	height: 130px;
	display: block;
	overflow: hidden;
	margin: 10px;
	padding: 0px;
}
/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#2f2f2f;
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#e52518;
	cursor:default;
}

#thumbs h3 {
	font-size:12px;
	margin: 5px 0 5px 0;
	padding: 0;
}

#thumbs p, #thumbs span {
	margin:0px;
	font-size:10px;
	color:#fff;
	padding: 0;
}


