
/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:inline;
	width:67px;
	height:102px;
	margin-top:-10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 	{ overflow:visible; background:url(../images/scroll/rightbutt.png) no-repeat; float:right; clear:right; margin-right: 1px;}

/* left */
a.left 		{ overflow:visible; background:url(../images/scroll/leftbutt.png) no-repeat; float:left; clear:left; margin-left: 1px;}

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



/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	float:left;	
	position:relative;
	overflow:hidden;
	width: 460px;
	height:85px;
	left: 50px;
	margin-top:-92px;
}

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

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

/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px 6px 5px 7px;
	background:url(../images/lastminute_item_bg.png) no-repeat;	
	cursor:pointer;
	width:79px;
	height:79px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}