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

	/* required settings */
	position:relative;
	overflow:hidden;
    width: 285px;
    height: 450px;
}

/*
	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 img {
	float:left;
	margin: 10px 0px 0px 0px;
	background-color:#fff;
	border:10px solid white;
	cursor:pointer;
	width:265px;
	height: 399px;	
}

/* active item */
.scrollable .active {
	border:10px solid white;
	z-index:9999;
	position:relative;
}
#cs_nav {
  width: 285px;
  margin-top: 10px;
  float: left;
}
.cs_back,
.cs_next {
  width: 97px;
  height: 23px;
  display: inline;
  text-indent: -9999em;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
}

.cs_back {
  background: url("http://gofreestone.dev.brokt.com/images/cs_back.png") no-repeat;
  float: left;
}

.cs_next {
  background: url("http://gofreestone.dev.brokt.com/images/cs_next.png") no-repeat;
  float: right;
}