#image_wrap {
	/* dimensions */
	width:725px;
	height:472px;
	margin:0px;
	padding:0px;
	/* centered */
	text-align:center;
	/* some "skinning" */
}/*
#image_wrap img {
	margin:0px; padding:0px; width:725px; height:472px;
}

	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:absolute;
	top:520px;
	left:45px;
	overflow:hidden;
	width: 695px;
	height: 80px;
	margin:0px;
	padding:0px;
}

/*
	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;
}

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


/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 3.5px;
	width:70px;
	height:70px;
	cursor:pointer;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	
	width:10px;
	height:50px;
	margin:0px;
	padding:0px;
	cursor:pointer;
}

/* right */
a.right {background-image:url(../images/arrow-right.png); background-repeat: no-repeat; clear:right; position:absolute; z-index:3000; top:500px; right:20px;}

/* left */
a.left {background-image:url(../images/arrow-left.png); background-repeat: no-repeat;} 

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
