
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 77%;
	height:120px;
	text-align:left;

	/*display:inline-block;
	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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;
	
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:40px 5px 20px 21px;
	background-color:none;
	padding:20px 0 0 0 ;
	border:none;
	cursor:pointer;
	width:85px;
	height:70px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable1 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 85%;
	height:140px;
}
.scrollable1 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
*+html .scrollable1 .items { left:0;}
.scrollable1 img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px dotted #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
}
.scrollable1 div.boxProd{ background:#f6f7f8; border:1px solid #dedede; height:140px; width:125px; padding:15px 0 15px 15px;}
.scrollable1 div.boxProd img{margin:0 5px 15px 2px;}
.scrollable1 div.boxProd p{position:relative; clear:both; color:#014da2; width:120px; text-align:left; margin:6px 0; font-size:1.1em;}
.scrollable1 div.boxProd span{color:#ff7800; font-weight:bold;}
.scrollable1 a p{ position:relative; clear:both; color:#014da2; width:100px;}
.scrollable1 .active {
	position:relative;
}


