/* //// Text styles //// */

.scrollProdTitle {
    color: #ffffff;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 17px;
    font-weight: bold;
    width: 182px;
}
.scrollProdDesc {
    color: #cccccc;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 12px;
    width: 182px;
    height: 102px;
    overflow: hidden;
}
.scrollProdDesc2 {
    color: #cccccc;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 12px;
    width: 182px;
    height: 180px;
    overflow: hidden;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 980px;
	height: 292px;
}

/*
	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;
}

.items .item {
	float: left;
	width: 980px;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
} 	


