/* root element for scrollable */
.vertical {  
	position:relative;
	overflow:hidden;	
	height: 389px;
	width: 160px;
	margin-left:10px;
	background: #FFFFFF;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	margin-left:10px;
	margin-bottom:20px;
	margin-top:20px;
	height:103px;
}

.items div td {
	vertical-align:middle;
	height:103px;
}

/* elements inside single item */
.items img {
	cursor: pointer;
	opacity:0.6;
	filter:alpha(opacity=60); 
}

.items div.active {
	z-index:50;
	position:relative;
}

.items div.active img {
	opacity:1;
	filter:alpha(opacity=100); 
}
.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}



