	#image_header {
	position: relative;
	margin-top: 100px;
	float: right;
	margin-right: 60px;
	}
	#image_header.prize {
	margin-top: 0px;
	float: left;
	margin-left: 15px;
	}
	/* styling for the image wrapper  */
	#image_wrap, .image_wrap {
		/* dimensions */
		width:350px;
		height: 400px;
		margin:0;
		margin-left: 15px;
		padding:0;

		/* centered */
		text-align:center;

		/* some "skinning" */
		background-color: #efefef;
		border:2px solid #fff;
		outline:1px solid #ddd;
	}
	
	.image_wrap {
	width:360px;
	height: 270px;
	margin-left: 0;
	outline:0px solid #ddd;
	}
	
	
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable, .scrollable_1 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 55px;
	height:407px;
	position: absolute;
	top: -1px;
	left: 370px;
	background-color: #fff;

	/* custom decorations */
}

.scrollable_1 {
	width: 81px;
	height:274px;
	position: absolute;
	top: -1px;
	left: 364px;
}

/*
	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, .scrollable_1 .items_1 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div, .items_1 div {
	float:left;
	width:50px;
}

.items_1 div {
	width:75px;
}

/* single scrollable item */
.scrollable img, .scrollable_1 img {
	margin:0px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:50px;
	height:62px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable_1 img {
	margin:0;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:75px;
	height:62px;
	display: block;
}

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


