/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;
}

/* root element for scrollable items */
.vitems {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.vitems div {
	border-bottom:1px solid #ddd;
	margin:0px;
	padding:0px;
	font-size:12px;
	height:100px;
}

/* elements inside single item */
.vitems img {
	float:left;
	margin-right:0px;
	height: 100px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	_background:url(../images/h300.png) repeat-x;
	_background:url(../images/detailbg.png) repeat-x;
}

/* active item */
.vertical .active img {
	background-image:none;
	background-color:white;
}





/* root element for scrollable */
.bvertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 496px;
}

/* root element for scrollable items */
.bvitems {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.bvitems div {
	border-bottom:1px solid #ddd;
	margin:0px;
	padding:0px;
	font-size:12px;
	height:124px;
}

/* elements inside single item */
.bvitems img {
	float:left;
	margin:2px;
	height: 120px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	_background:url(../images/h300.png) repeat-x;
	background:url(../images/detailbg.png) repeat-x;
}

/* active item */
.bvertical .active img {
}