/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/


.scrollable,
.scrollable2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 682px;
	height:280px;
	margin-left:4px;

	/* custom decorations */
	
	background:url(/lib/fond.png);
}

/*
	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,
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	border:0px !important;
	border:0!important;
	border:none!important;
}

/* single scrollable item */
.scrollable .item,
.scrollable2 .item {
	float:left;
	margin:10px 21px 20px 26px;
	padding:00px;
	cursor:pointer;
	width:172px;
	height:140px;
	border:0px !important;
	border:0!important;
	border:none!important;
	

}

.scrollable .item img,
.scrollable2 .item img {
border:0px !important;
	border:0!important;
	border:none!important;


}
/* active item */

.scrollable .item .active,
.scrollable2 .item .active {

	z-index:9999;
	position:relative;
}

.scrollable2 h3,
.scrollable h3 {
	font-size:16px;
	font-weight:bold;
	color:#0066CC;
	
	margin:10px;
	
}

.scrollable2 h4,
.scrollable h4 {
	font-size:13px;
	font-weight:bold;
	color:#0066CC;
	
	
}
.scrollable2 p,
.scrollable p {
	margin:0px;
	padding:5px 0px;

}

