
.scrollContent {
	width			: 500px;
	margin		: 15px auto;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	width:400px;
	float:left;
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	float	:left;
}
/* mouseover state */
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
/* next button uses another background image */
a.next, a.nextPage {
	background:transparent url("jquery_scrollable101/right.png") no-repeat 0 0;
	clear:right;
}
/*********** navigator ***********/
/* position and dimensions of the navigator */
div.navi {
	display	: none;
}
/* items inside navigator */
div.navi a {
	float:left;
	width:8px; height:8px;
	margin:3px;
	background:transparent url("jquery_scrollable101/navigator.png") no-repeat 0 0;
	cursor:pointer;	
}
/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
}

/*********** root element ***********/
/* root element for the whole scrollable setup */
.scrollable {
	position:relative;
	overflow:hidden;
	width:400px; height:300px;
}
/* 
root element for scrollable items. It is 
absolutely positioned with large width. 
*/
#thumbs {
position:absolute;
	width:5000px;
	clear:both;
}
/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:130px;
}
/* single item */
#thumbs div {
	position:relative;
	width:400px; height:300px;
	color:#666;
	background:#fff;
	cursor:pointer;
	line-height:1.5;
	float:left;
	margin	:0 auto;
}
/* style when mouse is over the item */
