
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 600px;	
	height:130px;	
	
	/* custom decorations */
	padding-top:55px;	
}

/* 
	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-right:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	color: #181e1d;
	float: left;
	font-family: "Trebuchet MS";
	margin: 0 15px 0 5px;
	text-align: center;
	width: 100px;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#fcdd7e;
}

div.scrollable div.items a {
	color: #181e1d;
	text-decoration: none;
}

div.scrollable div.items h3 {
	font-size: 140%;
	font-weight: bold;
	margin: 5px 0px 3px 0px;
}

div.scrollable div.items strong {
	font-size: 110%;
	font-style: italic;
	font-weight: normal;
}