﻿/* minimal settings */
.scrollable {
	
	/* required settings for the root element */
	position:relative;
	overflow:hidden;
	width: 750px;
	
	/* configurable styling */
	border:0px solid #ccc;
	padding:20px 0;
	height:50px;
}

.scrollable .items { 	
	margin-left:10px;
	position:relative;
	width:20000em;	
}

.scrollable .items div {
	text-align:center;
    width:auto; 
    padding:0px; 
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:0px outset #ccc;
	margin-right: 0px;
	float:left;
	-moz-border-radius:5px;
	border-radius:5px;
}


/* custom style */
/*
body {
	padding:50px 100px;		
}
*/