/* root element for scrollable */
.vertical {
	/* required settings */
	position:absolute;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 510px;
	width: 250px;
	z-index: 20;
}

/* root element for scrollable items */
.items {
	position:absolute;
	background-color: #e7e7e7;	
	margin: 0px;
	height: 2000em;
}

/* single scrollable item */
.items div {
	font-size:12px;
	height:175px;
	margin: 0 0 0 11px;
	padding: 0 0 0 10px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:150px;
	width:200px;
	border: 4px solid #ffd100;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
.actions {
	width:250px;
	margin:54px 0 0 0;
	text-align: center;
	position: relative;
}
.disabled {
	visibility:hidden;		
}
#gal_top {
	background-image: url(i/gal_top.png);
	background-repeat: no-repeat;
	height: 29px;
	width: 250px;
	position: relative;
}
#gal_top .prevPage {
	background-image: url(i/arrow_top.png);
	background-repeat: no-repeat;
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	left: 115px;
	top: 0px;
	text-decoration: none;
	cursor: pointer;
}
#gal_bottom {
	position: relative;
	margin: 0 0 25px 0;
	background-image: url(i/gal_bottom.png);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 29px;
	width: 250px;
	padding-top: 510px;
}
#gal_bottom .nextPage {
	background-image: url(i/arrow_bottom.png);
	background-repeat: no-repeat;
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	left: 115px;
	bottom: 0px;
	text-decoration: none;
	cursor: pointer;
}
