/* this makes it possible to add next button beside scrollable */
div.scrollable {
	width:872px;
	float:left;
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:transparent url("../image/navileft.png") no-repeat 0 0;
	float:left;
	cursor:pointer;
	margin-top: 43px;
	margin-bottom: 43px;
	margin-right: 10px;
	margin-left: 10px;
}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
/* next button uses another background image */
a.next, a.nextPage {
	background:transparent url("../image/naviright.png") no-repeat 0 0;
	clear:right;
}
/*********** navigator ***********/
/* position and dimensions of the navigator */
div.navi {
	width:240px; height:20px;
	margin:0 35px; padding:0;
	text-align:center;
}
/* items inside navigator */
div.navi a {
	float:left;
	width:8px; height:8px;
	margin:3px;
	background:transparent url("../image/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:872px; /* 画像の幅×3 */
	height: 310px;
}
/* 
root element for scrollable items. It is 
absolutely positioned with large width. 
*/
#thumbs {
position:absolute;
	width:20000em;
	clear:both;
}
/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:175px;
}
/* single item */
#thumbs div {
	position:relative;
	float:left;
	width:872px;
	color:#fff;
	background:#fff;
	line-height:1.5;
}
#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;
	font-family:"bitstream vera sans";
	font-size:11px;
	color:#fff;
}
