/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
	height:248px;
	/* custom decorations */
	padding:0;
	border-top: 1px dotted #FFFFFF;
	border-bottom: 1px dotted #FFFFFF;
}
div.scrollable /* 
	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.
*/
 ul.items {
	/* this cannot be too large */
	width:100%;
	position:absolute;
	clear:both;
	/* decoration */
	margin:0px;
	padding:0px;
	list-style:none;
}
div.scrollable ul.items li { /* single scrollable item */
	float:none;
	/* custom decoration */
	padding:12px;
	margin: 0px;
	border-bottom: 1px dotted #FFFFFF;
	height: 100px;
	*height: 136px;
	overflow: hidden;
}
div.scrollable ul.items li a {
	display: block;
	color: #fff;
	text-decoration: none;
	height: 100%;
	margin: -12px;
	padding: 12px;
}
div.scrollable ul.items li a img {
	border-width: 0px;
	border-style: none;
}

div.scrollable ul.items li.active { /* active item */
	background-color:#f48300;
}
div.scrollable ul.items li div.img {
	float: left;
	margin-right: 7px;
	background: #eee;
}
div.scrollable  ul.items  li  .readmore {
	float: right;
}

