/* scrollable-horizontal */
.scrollable {
	position:relative;
	overflow:hidden;
	width: 400px;
	height:100px;
}
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
	margin-left:5px;
}

.items div {
	float:left;
	width:400px;
}

.items div img {
	cursor:pointer;
}

.scrollable img {
	float:left;
	margin:10px 5px;
}

.scrollable .active {
	position:relative;
	cursor:default;
}

/* scrollable-buttons */

.scrollable {
    float:left;
}

a.browse {
    display:block;
    width:15px;
    height:100px;
    float:left;
    cursor:pointer;
}

a.right { background:url(../images/top2/btn_next.gif) no-repeat;}
a.left { background:url(../images/top2/btn_back.gif) no-repeat;}

a.left:hover,a.right:hover {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

