/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 328px;
	height:220px;

	/* custom decorations */
	border:1px solid #ccc;
	
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

/*
	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:2500px;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin-left: 10px;
	margin-top: 5px;
	/*cursor:pointer;*/
	width:210px;
	height:210px;
}

.scrollable p {
	float:left;
	height: 200px;
	width:98px;
	margin-top: 20px;
	margin-right: 5px;
	background: white;
}
.scrollable p span {
	font-size: 11px;
}
	
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


.details {
	font-size: 14px;
	line-height: 16px;
}


