/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 275px;
	height: 180px;	/* custom decorations */
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	height: auto;
}

.items div {
	float:left;
	width:275px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px;
	padding:0px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.navi {
	position: relative;
	width: 275px;
	height: 20px;
	text-align:center;
	clear:both;
	margin: 12px 2px;
}
.navi a:focus {
	outline:none;
}
.navi a {
	background-color: #333;
	position: relative;
	height: 12px;
	width: 12px;
	margin-top: 1px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	display: inline-block;
	border-radius: 8px;
	box-shadow: none;
}
.navi a:hover {
	background-color: #888;
}
.navi a.active {
	background-color: #888;
	top: -1px;
	box-shadow: 0px 3px 2px #bbb;
}
.navi a:active {
	top: 1px;
}