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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 995px;
	height:340px;
	margin-top: 0px;
	margin-left: -1px;
	/* custom decorations 
	background-image: url(../images/MainSliderBg.jpg)*/
}

/*
	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:10000em;
	position:absolute;
	clear:both;
	top: 0px;
}

.items div {
	float:left;
	width: 995px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	/*margin:10px 10px 42px 10px;*/
	padding:0px;
	width:995px;
	height:340px;
}

/* active item */
.scrollable .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}

.items div.SliderContentArea {
	width: 995px;
	height:340px;
	position: absolute;
	z-index: 100;
	left: ?px;
	top: ?px;
	/*margin: 10px 10px;*/
}
