
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/

div.scrollable {
	position:relative;
	overflow:hidden;
	float:left;
	height:140px;
	margin:10px;
	border:2px solid #fff;
	outline:1px solid #333;
	-moz-outline-radius:4px;
	background-color: #222;
	background-image: url(h150.png);
	background-repeat: repeat-x;
	padding: 0px;
}

/* 
	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 */
	padding:5px;
	float:left;	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:110px;
	padding:5px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	
	margin-right: 5px;	
	-moz-border-radius:4px;
}

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

/* tooltip styling. uses a background image (a black box with an arrow) */ 
div.tooltip { 
    background:transparent url(tooltip/black.png) no-repeat scroll 0 0; 
    font-size:14px; 
    height:153px; 
    padding:30px; 
    width:310px; 
    font-size:14px; 
    display:none; 
    color:#fff; 
} 
 
/* tooltip title element (h3) */ 
div.tooltip h3 { 
    margin:0; 
    font-size:18px; 
    color:#fff; 
}

<!--[if IE]> 
div.tip { 
    background-color:#ddd; 
} 
<![endif]-->