.scrollable {

	position:relative;
	overflow:hidden;
	width: 300px;
	height:120px;
}

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

/* single scrollable item */
.scrollable a{
    float:left;
    margin:20px 5px 20px 21px;
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    cursor:pointer;
    -moz-border-radius:4px;
	-webkit-border-radius:4px;
	width:120px;
	height:90px;
    text-align: center;
}


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