/************************************************************/
/*	class for thumbnail of displayed product	*/
.productItem {
	height: 70px;
	width: 100px;
	margin-top:5px;
	margin-bottom:5px;
	cursor:pointer;
}
.displayedProduct {
	border-color: #9f1a1d;
	border-style: solid;
	border-width: 1px;
	height: 70px;
	width: 100px;
}
/************************************************************/
/* root element for scrollable */
div.scrollable.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* the height of the containers total area - match this to single scrollable item size below */
	/* 4 items visible in this example */
	height: 400px;	 
	/* height: 640px;	 /* testing */
	width: 200px;
	text-align:center;
}

/* single scrollable item */
div.scrollable div.items div {
	vertical-align:middle;
	height:80px;
	width:200px;
}


/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}


/* mouseover state */
div.scrollable div.items div:hover {
	background-color:#f4e2ce;
}

/* clicked state */
div.scrollable div.items div:active {	
}

/* active item */
div.scrollable div.items div.active {	
	cursor:default;
}

/************************************************************/

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	/*	display:block;	*/
	/*	width:18px;	*/
	/*	height:18px;	*/
	/*	background:url(../img/scrollable/arrow/left.png) no-repeat;	*/
	/*	float:left;	*/
	/*	margin:43px 10px;	*/
	cursor:pointer;
	/*	font-size:1px;	*/
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/*	background-position:0px -18px;			*/
}

/* disabled navigational button */
a.disabled {
	/*	visibility:hidden !important;			*/
}

/* next button uses another background image */
a.next, a.nextPage {
	/*	background-image:url(../img/scrollable/arrow/right.png);	*/
	/*	clear:right;		*/
}

/************************************************************/
