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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:300px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/images/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,
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable .item,
.scrollable2 .item {
	float:left;
	margin:20px 20px 20px 26px;
	padding:2px;
	cursor:pointer;
	width:162px;
	height:140px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .item img,
.scrollable2 .item img {
	border:4px solid #999;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;

}
/* active item */

.scrollable .item .active,
.scrollable2 .item .active {
	border:2px solid #000;
	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;

}


