div.Horizontal_1 {
	height: 182px;
	width: 955px;
}

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.Horizontal_1 div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 851px;	
	height: 172px;	
	
	/* custom decorations */
	padding:10px 0;
	background-color:#efefef;				

/* this makes it possible to add next button beside scrollable */
	float:left;
	border-style: none;
}

/* 
	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.Horizontal_1 div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.Horizontal_1 div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:110px;
	background-color: #fff;
	margin-right: 10px;	
	-moz-border-radius:5px;
}

/* active item */
div.Horizontal_1 div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

/* prev, next, prevPage and nextPage buttons */
div.Horizontal_1 a.prev, div.Horizontal_1 a.prevPage {
	display:block;
	width: 52px;
	height: 182px;
	background: url(../images/download_icones_16.jpg) no-repeat;
	float:left;
	cursor:pointer;
}

/* prev, next, prevPage and nextPage buttons */
div.Horizontal_1 a.next, div.Horizontal_1 a.nextPage {
	display:block;
	width: 52px;
	height: 182px;
	background: url(../images/download_icones_18.jpg) no-repeat;
	float:left;
	cursor:pointer;
}

/* mouseover state */
div.Horizontal_1 a.prev:hover, div.Horizontal_1 a.prevPage:hover {
	background: url(../images/download_icones_16_01.jpg) no-repeat;
}

/* mouseover state */
div.Horizontal_1 a.next:hover, div.Horizontal_1 a.nextPage:hover {
	background: url(../images/download_icones_18_01.jpg) no-repeat;
}

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

/* next button uses another background image */
div.Horizontal_1 a.next, div.Horizontal_1 a.nextPage {
	clear:right;
	background: url(../images/download_icones_18.jpg) no-repeat;
} 	

