.scrollable {
    margin-left: 34px;
	float: left;
	position: relative;
	overflow: hidden;
	width: 770px;
	height: 125px;
}
.scrollable .items {
	width: 20000em;
	position: absolute;
	clear: both;
}
.scrollable_item {
    position: relative;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
	height: 125px;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.scrollable_item:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
.scrollable .active {
}

