/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.scrollgallery {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 1000px;
	height:661px;
	z-index:-9999;
	/* custom decorations */
	border:none!important;
	background:url('/thesmarterwebcompany-co-uk/_img/gallery-slider/img/big_slider_bg.png') no-repeat;
}

/*
	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.
*/
.scrollgallery .windows {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.windows div {
	float:left;
	width:1000px!important;
}

/* single scrollable item */
.scrollgallery img {
	float:left;
	margin:0px 0px 0px 0px;
	background-color:#fff;
	border:0px solid #ccc;
	width:1000px;
	height:661px;
	padding-top:0px;
	background:transparent;
	

}

/* active item */
.scrollgallery .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}


