/* root element for the whole scrollable setup */
div.scrollable {
	
	/* two required settings */
	position:relative;
	overflow:hidden;	 
	
	/* custom decoration */
	width: 700px;	
	height:105px;
	padding:5px 0;	
	border:1px outset #ccc;
	background-color:#efefef;				
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
div.scrollable div.items {
	position:absolute;
	width:20000em;
	clear:both;
	background-color: #FFFFFF;
	/* decoration */
	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	width:150px;
	padding:1px 0px;
	font-size:8px;
	font-family: 'bitstream vera sans';
	margin-right: 10px;
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
	background-color: #996666;
	border: 2px outset #000;
}

.links 
{
	position: relative;
	margin: 0;
	font-size: 1.2em;
	top: -30px;
	height: 30px;
	background: black;
	opacity: .6;
	filter:alpha(opacity=70);
	padding:1px 0px;
	width: 150px;
	font-family: "Comic Sans MS", cursive;
	color: #FFF;
	text-align: center;
}

