/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}
.left
{
  float: left;
}
.right
{
  float: right;
}
.break
{
  clear: both;
}

/* prev, next, prevPage and nextPage buttons 
div#frontpageslidebox a.browse {
	background:url(../images/scrollable/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:65px 0px;
	cursor:pointer;
	font-size:1px;
}
*/

div#frontpageslidebox a.browse {
	background:url(../images/scrollable/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:290px;
	float:left;
	margin:10px 0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
div#frontpageslidebox a.right 				{ background-position: -30px 0px; clear:right; margin-right: 0px;}
div#frontpageslidebox a.right:hover 		{ background-position:-90px 0px; }
div#frontpageslidebox a.right:active 	{ background-position:-90px 0px; } 


/* left */
div#frontpageslidebox a.left				{ margin-left: 0px; } 
div#frontpageslidebox a.left:hover  		{ background-position:-60px 0; }
div#frontpageslidebox a.left:active  	{ background-position:-60px 0; }

/* up and down */
div#frontpageslidebox a.up,div#frontpageslidebox * a.down		{ 
	background:url(../images/scrollable/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
div#frontpageslidebox a.up:hover  		{ background-position:-30px 0; }
div#frontpageslidebox a.up:active  		{ background-position:-60px 0; }

/* down */
div#frontpageslidebox a.down 				{ background-position: 0 -30px; }
div#frontpageslidebox a.down:hover  		{ background-position:-30px -30px; }
div#frontpageslidebox a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
div#frontpageslidebox a.disabled {
	visibility:hidden !important;		
} 	



/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 540px;
	height:300px;

	/* 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;
}

.scrollingCollection {
	float:left;
	width:540px;
}

/* single scrollable item */
.scrollingProductItem {
	float:left;
	margin:10px 0px 6px;
	background-color:#fff;
	width:179px;
	margin-right: 1px;
	height:150px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* custom additional css */
div.scrollingProductItem
{
  position: relative;
  overflow: hidden;
  /* border:1px solid gray; */
  text-align:center;
  height: 288px;
  width: 267px;
}
div.scrollingProductItem div.scrollingProductImage{
	display:table-cell;
	height:288px;
	text-align:center;
	vertical-align:middle;
	width:267px;
}
div.scrollingProductOverlay
{
  position: absolute;
  bottom: 0px;
  width: 267px;
  height: 40px !important;
  background-color: #FFFFFF !important;
  opacity: 0.8;
  font-size: 12px;
  overflow: hidden;
  padding: 0px 1px;
  line-height: 18px;
}
a.scrollingProductOverlayLink
{
  position: absolute;
  height: 288px;
  width: 267px;
  left: 0;
  top: 0;
  background-color: transparent;
}

