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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 530px;
	height:450px;
	float:left; 

}

/*
	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;
}

/* single scrollable item */
.scrollable .items div.item {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:500px;
	height:401px;
	position: relative;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .items div.item .content {
	background:#000;
  opacity: 0.65;
  filter: alpha(opacity = 65);
  position: absolute;
  width: 500px;
  height: 75px;
  top:328px;
  font-family: sans-serif;
}
.scrollable .items div.item img {width: 500px; height: 400px;}
.scrollable div.item .content h2 {color: #fff; font-size: 1.2em; margin: 0 5px; padding: 5px 0;}
.scrollable div.item .content p {color: #fff; font-size: 1em; font-family: sans-serif;}