
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 670px;
	height:70px;

	/* custom decorations */
	border:1px solid #FFF;
	/* background:url(/images/h300.png) repeat-x; */
}

body {
	font-size:100%;
	line-height: 100%;
	font-family: Arial, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Geneva, sans-serif;

}

.pricefrom, a.pricefrom, a.pricefrom:link, a.pricefrom:visited { 
        color: #000000;
        font-size: 11px;
       line-height: 1.2em;
        text-decoration: none;
        font-weight: bold;
}

a.pricefrom:hover { 
        text-decoration: none;
        color: #006699;
}

a.pricefrom:active { 
        text-decoration: none;
        color: #c0c0c0;
}

.readmbutton50 { float: right; margin: 0px; padding: 0px; line-height: 0.8em; 
float: right; border: 1px solid #c0c0c0; background-color: #FAFAFA; width: 50px; text-align: right; margin-right: 3px;
}

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

.items div {
	float:left;
	width:670px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 5px 20px 6px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/* original width:100px;
	height:75px; */
	width:150px;
	height:41px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


