/* CSS Document */

#image_wrap{
	text-align:center;
	height:344px;
}

/*
#image_wrap img{
	height:344px;
	width:auto;

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 398px;
	height:85px;
}

/*
	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:20000em;
	position:absolute;
	clear:both;
	margin-left:8px;
}

.items div.image-block {
	float:left;
	width:398px;
}

/* single scrollable item */
.scrollable img {
	background-color:#fff;
	border:1px solid #666;
	width:auto;
	height:auto;
}

.scrollable div.image-block div {
	width:85px;
	float:left;
	text-align:center;
	margin:10px 5px;
}


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





/* disabled navigational button */
a.disabled {
		
} 	

