#contentScroller {
	width: 					526px; /* 76 px for the arrows (38px per arrow) */
	height: 				125px;
	padding: 				5px 0 5px 0;
	clear:					both;
}
div.scrollable {
	
	/* required settings */
	position:				relative;
	overflow:				hidden;	 	
	width: 					320px;	
	height:					85px;
	float:					left;
}
/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:					20000em;	
	position:				absolute;
	clear:					both;		
	
	/* decoration */
	margin-left:			10px;
}
/* single scrollable item */
div.scrollable div.items div {
	float:					left;
	
	/* custom decoration */
	text-align:				center;
	width:					90px;
	margin: 				0 5px 0 5px;
	padding: 				0 5px 0 5px;	
	font-family:			Arial, Helvetica, sans-serif;
	font-size:				10px;
	padding-top: 			5px;
	padding-bottom: 		5px;
	height: 				90px;
}
div.scrollable div.items div img {
	padding-top: 			4px;
	border:					none;
}
div.scrollable div.items div a:link, div.scrollable div.items div a:visited {
	color:					#06F;
	text-decoration: 		none;
	font-weight:			bold;
}
div.scrollable div.items div a:active, div.scrollable div.items div a:hover {
	text-decoration: 		underline;
}
/* active item */
div.scrollable div.items div.active {
	/*
	border:1px inset #ccc;		
	background-color:#fff;
	*/
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:				block;
	width:					18px;
	height:					18px;
	background:				url(/images/travelstorescroller/left.png) no-repeat;
	float:					left;
	margin:					43px 10px;
	cursor:					pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:	0px -18px;		
}
/* disabled navigational button */
a.disabled {
	visibility:				hidden !important;		
}
/* next button uses another background image */
a.next, a.nextPage {
	background-image:		url(/images/travelstorescroller/right.png);
	clear:					right;	
}
/* position and dimensions of the navigator */
.navi {
	margin-left: 			233px;
	width:					60px;
	height:					20px;
	float:					left;
}
/* items inside navigator */
.navi a {
	width:					8px;
	height:					8px;
	float:					left;
	margin:					3px;
	background:				url(/images/travelstorescroller/navigator.png) 0 0 no-repeat;     
	cursor:					pointer;	
}
/* mouseover state */
.navi a:hover {
	background-position:	0 -8px;      
}
/* active state (current page state) */
.navi a.active {
	background-position:	0 -16px;     
} 