
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.diaContainer{zoom:1;margin-top:10px;width:695px;background:#e4e4e4;-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 600px;
	height:110px;
	/* 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 3px 10px 3px;
	border:3px solid #f4f4f4;
	cursor:pointer;
	width:74px;
	height:74px;
	}

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


