/* outmost wrapper element */
#scrollable {
	background-color:#ffffff;
	border:none;
	padding:0;
	width:1000px;
	height:150px;
}
#scrollable2 {
	background-color:#ffffff;
	border:none;
	padding:0;
	width:1000px;
	height:150px;
}
/* container for the scrollable items */
div.items {
	height:150px;
	/*margin-left:45px;*/
	float:left;
	width:200px !important;
}

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:10px;
	width:215px;
	height:140px;
	font-size:10px;
	color:#000;
	line-height:150px;
	text-decoration:none;
	text-align:left;
	cursor:pointer;
}
div.items a:hover {
	color:#999;
}
div.items a.active {
	background-position:-174px 0;
	color:#555;
	cursor:default;
}
.slide{
font-size:12px;
padding-top:100px;
}

/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:40px;
	height:40px;
	float:left;
	background-repeat:no-repeat;	
	margin-top:50px;
}
a.prev {
	background:url(../image/go_left.png);
}
a.prev:hover {
	background:url(../image/go_left_over.png);
}
a.next {
	background:url(../image/go_right.png);
}
a.next:hover {
	background:url(../image/go_right_over.png);
}
/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:310px;
	margin-left:-50px;
	width:50px;
	height:0px;
}
/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(dots.png) 0 0 no-repeat;
	cursor:pointer;
}
div.navi span:hover {
	background-position:0 -8px;
}
div.navi span.active {
	background-position:0 -16px;
} 	
