/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
  margin: 0 0 0 -1px;
  padding:0;
	height:420px;
	/* custom decorations */
	border:0px solid #ccc;
	background: white;
  clear:both;
}

/*
	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: 10000px;
	height: 420px;
  left: -100px;
  margin: 0px;
	position: absolute;
}

/* single scrollable item */
.scrollable .item {
	float: left;
	margin: 0px 0px;
	background-color: white;
	padding: 0px;
	border: 0px;
  text-align: center;
	cursor: pointer;
	height: 440px;
  width: 500px;
	border: 0px solid black;
}

.scrollable .item img{
	border: 0px solid black;
}

.scrollable .item a{
  font: 18px Arial;
  position: absolute;
  width: 100%;
  text-align: center;
	margin: 0px;
  left: 0px;
  top: 395px;
}

/* active item */
.scrollable .active {
	border: 0px solid black;
	z-index: 98;
	position: relative;
}

