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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 880px;
	height:174px;

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

/* single scrollable item */
.scrollable img {
	
	/*margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;*/
	

}

/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	z-index:9999;
	position:relative;
}

/* single item */
.scrollable .items div {
	display:block;
	float:left;
	width:280px;
	height:154px;
	margin:10px 20px 0 0;
	/*background:#990000;
	background:#FFF url(../images/interface/thumbs_off_bg.jpg) repeat-x 0 0;*/
	color:#fff;
	cursor:pointer;

}

/* style when mouse is over the item */
.scrollable .items div.hover {
	/*background:#FFF url(../images/interface/thumbs_over_bg.jpg) repeat-x 0 0;*/
}

/* style when element is active (clicked) */
.scrollable .items div.active {
	/*background:#FFF url(../images/interface/thumbs_on_bg.jpg) repeat-x 0 0;*/
	cursor:default;
}

.scrollable .items div h3 { /*z-index: 5;*/
	width:149px;
	margin:0;		
	padding: 0;
	font-size:12px;
	font-weight:bold;
	color:#FFF;	
}
.scrollable .items div img{/* z-index: 1;*/float:right; margin:0; padding: 0; border:none; } 
.scrollable .items div p {
	display:block;
/* z-index: 5;*/
	width:149px;
	margin:0;
	padding: 0;
	font-size:11px;
	line-height:14px;
	color:#FFF;	
}