
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.diaContainer{margin-top:10px;width:700px;background:#a70230;}

.scrollable {

	/* required settings */
	float:none;
	position:relative;
	overflow:hidden;
	width: 625px;
	height:90px;

	/* custom decorations */
	border:none;
	
}

/*
	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;
	left:0;
	top:0;
}

/* single scrollable item */
.scrollable span {
	float:left;
	margin:10px 5px 10px 5px;
	border:4px solid #d56584;
	cursor:pointer;
	width:108px;
	height:62px;
	}

/* active item */
.scrollable .active {
	border:4px solid #fff;
	z-index:45;
	position:relative;
}



