
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	height: 216px;
	width: 390px;
	padding-top: 7px;
	padding-right: 0;
	padding-bottom: 7px;
	padding-left: 0;

}

/* 
	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 {
	width:2020px;
	position:absolute;
	clear:both;
}

div.scrollable div.items div {
	float:left;
	text-align:center;
	width:106px;
	height: 198px;
	margin-right: 8px;
	padding: 7px;
	border: 2px solid #CCC;
}

div.scrollable div.items div h1{
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #666;
	width: 105px;
	margin-top: 7px;
	padding-top: 7px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	font-weight: normal;
	}

