/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
/* styling for the image wrapper  */
#image_wrap {
	/* dimensions */
	width:320px;
	height:214px;
	/* centered */
	/* some "skinning" */
	background-color:#efefef;
	border:1px solid #000;
	margin-top: 0;
	margin-bottom: 13px;
}
#image_wrap2 {
	/* dimensions */
	width:320px;
	height:214px;
	margin:0 0 13px 0px;
	/* centered */
	text-align:center;
	/* some "skinning" */
	background-color:#efefef;
	border:1px solid #000;

}
#image_wrap3 {
	/* dimensions */
	width:320px;
	height:254px;
	margin:0 0 13px 0px;
	/* centered */
	text-align:center;
	/* some "skinning" */
	background-color:#efefef;
	border:1px solid #000;

}

#image_wrapbig {
	/* dimensions */
	width:707px;
	height:471px;
	/* centered */
	/* some "skinning" */
	background-color:#efefef;
	border:1px solid #000;
	margin-top: 0;
	margin-bottom: 13px;
}
.imgbig {
	border:none;
	width:320px;
	height:214px;
}
.imgbigbig {
	border:none;
	width:707px;
	height:471px;
}
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 252px;
	height:46px;
}
.scrollablebig {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 625px;
	height:46px;
}
/*
	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:2000px;
	position:absolute;
	clear:both;
}

.scrollable .items2 {
	/* this cannot be too large */
	width:2000px;
	position:absolute;
	clear:both;
}

.scrollable .items3 {
	/* this cannot be too large */
	width:2000px;
	position:absolute;
	clear:both;
}

.scrollablebig .itemsbig {
	/* this cannot be too large */
	width:2000px;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 7px 0px 0px;
	background-color:#fff;
	border:1px solid #000;
	cursor:pointer;
	width:55px;
	height:40px;
	
	/*-moz-border-radius:4px;*/
	/*-webkit-border-radius:4px;*/
}
.scrollablebig img {
	float:left;
	margin:0px 7px 0px 0px;
	background-color:#fff;
	border:1px solid #000;
	cursor:pointer;
	width:61px;
	height:44px;
	
	/*-moz-border-radius:4px;*/
	/*-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

.scrollablebig .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}
