div#latestViewedProducts
{
    width: 160px;
    margin: 0;
    padding: 0;
    float: left;
    display: none;
    /* display: inline; */
}


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div#scrollable {   
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width */     
    height: 152px;      
    width: 150px;     
} 

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div#scrollable div.items {     
    position:absolute; 
     
    /* this time we have very large space for height */     
    height:20000em;     
}

/* single scrollable item */
div#scrollable div.items div {
	float:left;
	padding: 8px 0;
	/* custom decoration */
	width: 150px;
}

div#scrollable div.items div span 
{
    padding: 0;
    margin: 0;
	display: block;
	border: #f5f5f5;
	float: left;
	
	/* Temp remove when images is in system, Olle */
	/* height: 60px; */
	/* border: solid 1px #f5f5f5; */
}

div#scrollable div.items div span.right { float: right; }

div#scrollable div.items div.center { text-align: center; }

div#scrollable div.items div.center span.wide { float: none; }

/* Navigation
*********************************************************************/
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage 
{
    margin: 0 auto;
	display:block;
	width:96px;
	height:18px;
	background:url(images/scrollable/prev.png) no-repeat;
	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, a.disabled:hover, a.disabled:hover {
	/* visibility:hidden !important; */
	background-position:0px -35px;
	cursor: default;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(images/scrollable/next.png);
	clear:right;	
}

