.flexcroll {
/* Typical fixed height and fixed width example */
width: 82px;
height: 330px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: absolute;
left:0;
top:25;
}

.flexcroll2 {
/* Typical fixed height and fixed width example */
width: 82px;
height: 330px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: absolute;
right:0;
top:25;
}

/* hesido: notice the addition of emptyspace holder, it should slightly be bigger than the containing div */
/* and it should only be that big when fleXcroll is active for better degradation */
.flexcrollactive .emptyspace {
	height: 0px;
}

/* you may optionally want to hide the scrollbars */
#left_photo .vscrollerbase {
	visibility: hidden !important;
}
#right_photo .vscrollerbase {
	visibility: hidden !important;
}