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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 917px;
	height:220px;

	/* custom decorations */
	border:1px solid #ccc;
	background: url(../images/scrollbg.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.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

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

/* single scrollable item */
.scrollable img {
	float:left;
/*	margin:20px 5px 20px 21px;
	padding:2px;
	border:1px solid #ccc;*/
	width:147px;
	height:160px;
	margin:0px 0px 10px 15px;
	
/*	-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

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

.scrollable table { width:100%}
.scrollable table td { text-align:center; width:180px;}
.scrollable .productTitle { line-height:18px; }
.scrollable .productTitle a:visited, .scrollable .productTitle a:link { color:#fff; text-decoration:none; font-size:12px; }
.scrollable .productTitle a:hover {color:#f96db0; text-decoration:none;}
.scrollable .priceTag { color:#00c6ff; font-size:14px; padding-top:5px;}

