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

	/* required settings */
	position:relative;
	overflow:hidden;
/*	width: 680px;*/
/*	width: 780px; */
	width: 980px; 

/*	margin-left: 200px;*/
	height:370px;
/*	height:120px;*/

	/* 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.
*/
.jqt-scrollable .jqt-items {
	/* this cannot be too large */
	width:50000em;
	position:absolute;
	clear:both;
}

.jqt-items div {
	float:left;
/*	width:680px;*/
	width: 970px;
}

/* single scrollable item */
.jqt-scrollable img {
	float:left;
	margin:5px 5px 20px 21px;
/*	background-color:#fff;*/
	padding:2px;
/*	border:1px solid #ccc;*/
/*	width:100px;
	height:75px;*/
	
	/*
	width:188px;
	height:261px;
	*/
	
/*	width:733px;
	height:300px;*/
	width:943px;
	height:354px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.jqt-scrollable .jqt-active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
