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


.scrollable {height:292px;}
.scrollable.withheader {height:318px;}
.scrollable.withsubtitle {height:340px;}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	/* custom decorations */
	background:none;
}

.scrollable  h3 {font-size:1.1em; margin:6px 16px 2px 0;color:#faf8f1}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
z-index:10;
}

/* single scrollable item */
.scrollable .item {
	float:left;
	margin:0px 4px 0px 0px;
	cursor:pointer;
}
.scrollable .item h4 {color:#57554d;font-weight:normal; padding:8px 0 2px;font-size:.7em; margin:0px;}
.scrollable .item img, .scrollable img.item {border:2px solid #fff;}
.scrollable p {font-size:.8em; padding:4px 0 0;}
/* active item */
.scrollable .active {
	background:#fff;
	z-index:9999;
	position:relative;
}


