/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 570px;	
	height:30px;	
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius: 5px;
	padding:10px 0 10px 0;	
	background:#000 url(degradado.jpg) repeat-x;				
}

/* 
	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;
	text-align:center;
	width:auto;
	padding:3px;
	border:1px outset #ccc;
	background-color: #8b0000;
	margin: 2px 20px 0 0;	
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius: 5px;
	color:#FFFFFF;
	
}
div.scrollable div.items div a{
color:#FFFFFF;
text-decoration:none;}
div.scrollable div.items div a:hover{
color:#000;
text-decoration:none;}
div.scrollable div.items div:hover {
	border:1px inset #ccc;		
	background-color:#ccc;
	color:#000000;
}



