/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width:640;
}
/*
	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:relative;
	clear:both;
	text-align:center;
}
.scrollable .items span {
	display: block;
	margin-top:3px;
	margin-bottom: 7px;
}
.scrollable .items div {
	float: left;
	text-align:center;
	margin-top: 13px;
	padding-left: 5px;
	padding-right: 5px;
	width: 103px;
	height:143px;
}
.scrollable .borderr {
	padding:4px;
	border:1px solid #eeeeee;
	margin-right:16px;
}
/* single scrollable item */
.scrollable img {
	cursor:pointer;
	width:101px;
	height:121px;
	/*-moz-border-radius:5px;
	-webkit-border-radius:5px;*/
}
.scrollable a {
	font: italic 10px verdana;
}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

