.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 920px;
	height:260px;
	padding: 5px 0 5px 0;
}

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

/* single scrollable item */
.scrollable li {
	float: left;
	margin: 0 20px 0 0;
	background-color: #fff;
	padding:15px;
	border: 5px solid #ececec;
	width: 175px;
	height: 220px;
	list-style-type: none;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
        overflow:hidden;
}

.scrollable li:hover {
	float: left;
	margin: 0 20px 0 0;
	background-color: #fff;
	padding:15px;
	border: 5px solid #ececec;
	width: 175px;
	height: 220px;
	list-style-type: none;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;

}

.scrollable img {
	float:left;
	background:url(../images/empty.jpg);
	cursor:pointer;
	width:170px;
	height:135px;
	margin:3px 0 9px 3px;
}

/* active item */
.scrollable .active {
	border:5px solid #ececec;
	z-index:9999;
	position:relative;
	right: 2px;
	bottom: 2px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.06) 3px 3px 3px;
	-moz-box-shadow: rgba(0, 0, 0, 0.06) 3px 3px 3px;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;
}

.scrollable h1 {
    font: 14px Arial;
    font-weight: bold;
    margin: 0 0 7px 0;
    color: #6f6f6f;
}
.scrollable p {
    font: 12px Gregoria;
    color: #ccc;
    line-height: 18px;
}
