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

	/* required settings */


}

/*
	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.
*/

div#slideHeader .contentItens { width: 651px; height: 173px; overflow: hidden; position: relative;}
div#slideMiddle .contentItens { width: 408px; height: 246px; overflow: hidden; position: relative;}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	overflow: hidden;
}

div#slideHeader .items div {
	float:left;
	width: 651px; height: 173px;
	overflow:hidden;
}

div#slideMiddle .items div.contentImgTxt {
	float:left;
	width: 408px; height: 246px;
	overflow:hidden;
	position: relative;
}

div#slideMiddle .items div .txtImg {
	display: block;
	position: absolute;
	bottom: -22px;
	left: 0;
	padding: 10px;
	width: 292px;
	height: 0;
	background: url(../img/bg/txtImg.png) no-repeat;
}

div#slideMiddle .items div .txtImg h4 a{ font-size: 14px; color: #fff; margin-bottom: 5px; z-index: 9999;}
div#slideMiddle .items div .txtImg p a{ font-size: 12px; color: #fff; z-index: 9999;}

/* single scrollable item */
.scrollable img {

}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}



