
/* outmost wrapper element */
#scrollable {
	margin: 0px;
	padding:10px 0px 10px 4px;
	width:640px;
	height:160px;
}
/* container for the scrollable items */
div.items {
	height:155px;
	margin-left:8px;
	margin-right:8px;
	float:left;
	width:520px !important;
}
/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:122px;
	height:155px;
	font-size:10px;
	color:#ccc;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}
div.items a:hover {
	color:#999;
}
div.items a.active {
	background-position:-174px 0;
	color:#555;
	cursor:default;
}
/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:51px;
	height:155px;
	float:left;
	background-repeat:no-repeat;
	margin:0px;
	cursor:pointer;
}
a.prev {
	background:url(button-left.gif);
}
a.prev:hover {
	background:url(button-left.gif);
}
a.next {
	background:url(button-right.gif);
}
a.next:hover {
	background:url(button-right.gif);
}


/* next / prev buttons */
a.prevPage, a.nextPage {
	display:block;
	width:51px;
	height:155px;
	float:left;
	background-repeat:no-repeat;
	margin:0px;
	cursor:pointer;
}
a.prevPage {
	background:url(button-left.gif);
}
a.prevPage:hover {
	background:url(button-left.gif);
}
a.nextPage {
	background:url(button-right.gif);
}
a.nextPage:hover {
	background:url(button-right.gif);
}

/* navigator */
div.navi {
}
/* 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;
} 	

