#wrap{
  background: url(images/list-product.png) no-repeat;
  width: 977px;
  height: 451px;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
  margin: 43px 0 0 10px;
  left: 1px;
  padding: 0;
  display: inline;

	width: 665px;
	height:320px;
}

/*
	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;
}

/* single scrollable item */
.scrollable img {
  display: inline;
	background-color:#fff;
	padding:0;

	cursor:pointer;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}



/* active item */
/*
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

*/

.scrollable {
	float:left;
}

.product{
  float: left;
  width: 97px;
  height: 140px;
  margin: 80px 3px;
  text-align: center;
  color: #000;
  border: 2px solid #f0f0f0;
  background: #fff;
}

.product a{
  color: #000;
}

.product p{
  text-align: center;
  font-weight: bold;
}
.product img{
  height: 89px;
  text-align: center;
}

.product .img{
  margin-top: 3px;
  height: 78px;
  text-align: center;
  overflow: hidden;
}

.product span{
  font-size: 10px;
  font-weight: normal;
  padding-top: 2px;
}

.active{
  margin: 13px 5px;
  padding: 0 15px;
  width: 202px;
  height: 280px;
  color: #000;
/*  border: 2px solid #f0f0f0; */
border: none;
  background: #fff;
}

.active p{
  margin: 0;
  padding: 0;
  font-weight: bold;
  position: relative;
}

.active img{
  height: 190px;
  text-align: center;
}

.active .img{
  height: 212px;
  overflow: hidden;
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
/*	background:url(../images/scrollable/horizontal.png) no-repeat; */
	display:block;
	width:18px;
	height:56px;
	float:left;
	margin:170px 0px 0 28px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{
/*  background-position: -19px 0px; clear:right; margin-right: 0px;*/
  padding: 0;
  margin-left: 10px;
	background:url(../images/rightarrow.png) no-repeat;

}
/*
a.right:hover 		{ background-position:-19px 0px; }
a.right:active 	{ background-position:-60px 19px; }
*/

/* left */
a.left				{
	background:url(../images/leftarrow.png) no-repeat;
}
a.left:hover  		{ background-position:0px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat;
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
