/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable_top{
	background:url('/thesmarterwebcompany-co-uk/_img/cstudSlider/img/casetop.png') no-repeat scroll 0 0 transparent;
	height:5px;
	width:650px;
	display:inline;
	float:left;
	position:relative;
	border:none!important;
}
.scrollable_bottom{
	background:url('/thesmarterwebcompany-co-uk/_img/cstudSlider/img/casebottom.png') no-repeat scroll 0 0 transparent;
	height:5px;
	width:650px;
	display:inline;
	float:left;
	position:relative;
	border:none!important;
}
.scrollable2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:413px;
	z-index:-9999;
	/* custom decorations */
	border:none!important;
	background:url('/thesmarterwebcompany-co-uk/_img/cstudSlider/img/casemiddle.png') repeat-y;
}

/*
	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.
*/
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable2 img {
	float:left;
	margin:10px 10px 0px 20px;
	background-color:#fff;
	border:0px solid #ccc;
	width:600;
	height:400px;
	padding-top:15px;
	background:transparent;
	

}

/* active item */
.scrollable2 .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}


