/* root element for scrollable */
.vertical { 
 
    /* required settings */
    position:relative;
    overflow:hidden;   
 
    /* vertical scrollers have typically larger height than width */
    height: 270px;
    width: 300px;
    border-top:1px solid #ddd;
}
 
/* root element for scrollable items */
.items {
    position:absolute;
 
    /* this time we have very large space for height */
/*  height:20000em; */
    margin: 0px;
}
 
/* single scrollable item */
.item {
    border-bottom:1px solid #ddd;
    margin:5px 0;
    padding:0px;
    font-size:12px;
/*  height:80px;*/
}
 
.item h3 {
    margin:0 0 5px 0;
    font-size:16px;
    color:#456;
    font-weight:normal;
	padding: 5px;
	background: #ffffff;
	opacity: 0.5;
	filter:alpha(opacity=50);
}
