/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#products_scroller {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 570px;
	height:230px;
	background:transparent;
	margin-left:20px;
	/* 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.
*/
#products_scroller .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

#products_scroller .items table {
	float:left;
	width:570px;
}

#products_scroller .items table td {
	background:url('../images/top_products_bg.png') no-repeat;
}

#products_scroller .product_thumbnail {
	width:190px;
	height:200px;
	
	font-size:11px;
	position:relative;	
}

#products_scroller .product_thumbnail .prod_thumb {
	position:absolute;
	top:15px;
	left:25px;	
}

#products_scroller .product_thumbnail .prod_name {
	position:absolute;
	top:175px;
	margin:0 10px 0 15px;
	text-align:center;
	width:170px;
	font-size:14px;	
}



/* active item */
#products_scroller .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* this makes it possible to add next button beside scrollable */
#products_scroller {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
#products_scroller_nav a.browse {
	position:absolute;
	top:40px;
	background:url('/scripts/jquery.uitools/hori_large.png') no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
#products_scroller_nav a.right 				{ right:15px;background-position: 0 -30px; clear:right; margin-right: 0px;}
#products_scroller_nav a.right:hover 		{ background-position:-30px -30px; }
#products_scroller_nav a.right:active 	{ background-position:-60px -30px; } 


/* left */
#products_scroller_nav a.left				{ left:10px;margin-left: 0px; } 
#products_scroller_nav a.left:hover  		{ background-position:-30px 0; }
#products_scroller_nav a.left:active  	{ background-position:-60px 0; }


/* disabled navigational button */
#products_scroller_nav a.disabled {
	visibility:hidden !important;		
} 	