
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:absolute;
	overflow:hidden;
	width: 440px;
	height:330px;
	margin: 0;
	padding: 0;
	

	}





	/* custom decorations */



/*
	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:4000em;
	position:relative;

}

.items div {
	float:left;
margin: 0;
padding:0;
background-color: transparent;
position: relative;
width:440px;
height:440px;
text-align:center;


}

/* single scrollable item */
.scrollable img {
	
}

/* active item */
.scrollable .active {
	border:1px solid #003366;
	position:relative;
	cursor:default;
}



/* styling for the image wrapper  */
	#image_wrap {
		
	}


