
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scroller {

	/* required settings */
	overflow:hidden;
	width: 600px;
	height:210px;

	/* custom decorations */
/*	border:1px solid #ccc;*/
/*	background:url(/images/h300.png) repeat-x;*/



}

/*
	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.
*/
.scroller .scrolleritems {
	/* this cannot be too large */
	width:20000em;
	clear:both;
}

/* single scrollable item */
.scroller .scrolleritem {
	float:left;
	margin:3px 3px 3px 3px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
/*	height:164px;*/
/*	width:112px;*/
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scroller .scrolleritem{
	float:left;
/*	height:160px;*/
	width:108px;
	text-decoration: none;
}

/* active item */
.scroller .active {
	border:2px solid #000;
	position:relative;
}

.scrolleritemimage
{
	float: none;
}
	
.scrolleritemimagediscount
{
	border-top: solid 1px white;
	background-color: #cc0000;
	width: 108px;
	vertical-align: middle;
	color: White;
	font-family: Arial;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

.scrolleritemimagediscount a:link { text-decoration: none; font-weight: bold;
}
.scrolleritemimagediscount a:visited { text-decoration: none; font-weight: bold;
}
