/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.mostPopular, .bestSelling {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 672px;
	height:320px;
	float:left;
	margin-left:10px;
}

/*
	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.
*/
.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	
}

.items .scrollItemContainer {
	float:left;
	width: 672px;
}

.items .testContainer
{
    float:left;
    width:672px;
    
    }

/* prev, next, prevPage and nextPage buttons */
.browse {
	display:block;
	width:15px;
	height:32px;
	float:left;
	margin:85px 00px;
	margin-left:0px;
	cursor:pointer;
	font-size:16px;
	padding:0px;
}

.left
{
    background:url(http://static.flowplayer.org/tools/img/scrollable/arrow/hori_large.png) no-repeat;
    background-position:-30px 0; 
    width:30px;
	height:30px;
    float:left;
    position:relative;
    }

.right
{
   background:url(http://static.flowplayer.org/tools/img/scrollable/arrow/hori_large.png) no-repeat;
   background-position: 0 -30px;
   width:30px;
   height:30px;
   position:relative;
   right:-10px;
   z-index:5;
    
    }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


