.scrollable {

	/* required settings */
	position:relative; 
	margin-left:10px; 
	font-size:17px; 
	margin-top:4px;
	margin-top:3px !ie;
	margin-left:120px !ie;
	overflow:hidden; 
	height:20px;
	width:690px;
}
.scrollable2 {

	/* required settings */
	position:relative; 
	margin:5px; 
	margin-bottom:0px;
	margin-top:0px;
	font-size:17px; 
	overflow:hidden; 
	height:30px;
	width:98px;
	text-align:left !ie;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:690px;
	position:absolute;
	height:20000em;
}

.scrollable2 .items2 {
	/* this cannot be too large */
	width:98px;
	position:absolute;
	height:20000em;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div,.items2 div {
	clear:both;
	margin-bottom:5px;
}
