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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:200px;
	background-color: rgba(300, 300, 300, 0.1);
 
color: rgba(300, 300, 300, 0.1);;


	/* custom decorations */
	
	border:0px solid #ccc;
	background-image:url(cadre1.jpg) repeat-x;
	-webkit-box-shadow: 2px 2px 23px 3px #b3b3b3;
-moz-box-shadow: 2px 2px 23px 3px #b3b3b3;
box-shadow: 2px 2px 23px 3px #b3b3b3;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
-moz-border-radius-bottomright: 8px;
-moz-border-radius-bottomleft: 8px;
-webkit-border-radius: 8px 8px 0px 8px;
border-radius: 8px 8px 8px 8px;
}

/*
	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:9000em;
	position:absolute;
	clear:both;
	background-image:url(cadre1.jpg)
}

.items div {
	float:left;
	width:670px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 0px 0px 0px;
	background-color:transparent;
	padding:0px;
	border:0px solid #ccc;

	
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 8px;
-webkit-border-radius: 8px 0px 0px 8px;
border-radius: 8px 0px 0px 8px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
	background-image:url(cadre1.jpg)
}


