@charset "utf-8";
/* CSS Document */

.scrollable2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 100%;
	height:140px;

}

/*
	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.
*/
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable2 img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px dotted #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}
.scrollable2 div.boxProd{ background:#f6f7f8; border:1px solid #dedede; height:160px; width:125px; padding:15px 0 15px 15px;}
.scrollable2 div.boxProd p{ position:relative; clear:both; color:#014da2; text-align:left; width:100px;}

/* active item */
.scrollable2 .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}


/* remove margins from the image */
.items img {
	margin:0;
}

/* make A tags our floating scrollable items */
.items a {
	display:block;
	float:left;
	margin:20px 15px;
} 
