@charset "utf-8";

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position: relative;
	overflow: hidden;
	width: 520px;
	height: 160px;
	top: 0px;
	left: 0px;
	/* custom decorations */

}

/*
	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;
    top: 0px;
	left: 0px;
}

/* single scrollable item */
.scrollable .img {
	background-color:#fff;
	cursor:pointer;
	width:130px;
	height:120px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.scrollable .div {
	float:left;
	width:130px;
	height:160px; 
	text-align: center;
	overflow: hidden;
}
.scrollable .div a{ text-decoration:none; color:#666}
.scrollable .div a:hover{ text-decoration: underline}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

.scrollable .goods-name { width: 130px; height:20px; overflow: hidden; padding:0; color:#666666;}
.scrollable .goods-number { width: 130px; height:20px; overflow: hidden; padding:0; color:#666666;}