/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position: absolute;
	overflow: hidden;
	top: 25px;

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

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

/* single scrollable item */
.items div {
	margin: 0;
	padding: 10px;
	font-size: 12px;
	height: 70px;
	width: 70px;
	border: 1px solid #fff;
}

div.vertical div.items div.active {
	background-color: #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #999;
}

/* elements inside single item */
.items img {
	float:left;
	height:70px;
	width:70px;
	cursor: pointer;
}

/* the action buttons above the scrollable */
#actions {
	width:70px;
	height: 10px;
	margin:0px 0 0px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.prev {
	position: absolute;
	top: 5px;
	margin-bottom: 5px;
	float:left;
	background:url(../images/up.png) no-repeat;
	width: 18px;
	height: 18px;
	margin-left: 38px;
	cursor: pointer;
}

.next {
	position: absolute;
	bottom: 5px;
	margin-top: 5px;
	float:left;
	background:url(../images/down.png) no-repeat;
	width: 18px;
	height: 18px;
	margin-left: 38px;
	cursor: pointer;
}

a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
        background-position:0px -18px;          
}


