.scrollable_wrapper {position:relative; margin-top:5px}
/* outmost wrapper element */
#scrollable {
	position:relative;
	width:220px;
	margin:0 40px;
	height:55px;
	overflow:hidden;
}

/* container for the scrollable items */
div.items {
	clear:both;
	position:absolute;
	width:20000em;
}

/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:4px;
	width:70px;
	height:55px;
	font-size:50px;
	color:#ccc;
	line-height:55px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {
	background-position:-170px 0;		
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	position:absolute;
	top:12px;
	width:30px;
	height:30px;
	background-repeat:no-repeat;
	background-image:url(../images/gallery_buttons.gif);
}

a.prev {
	left:0;
	background-position:0 0;	
}

a.prev:hover {background-position:0 -31px}

a.next {
	right:0;
	background-position:-31px 0;
}

a.next:hover {background-position:-31px -31px}
