﻿/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 380px;	 
	width: 354px;	
}

/* 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:10px 0;
	padding:15px;
	font-size:12px;
	height:50px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:50px;
	width:120px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:344px;
	margin:30px 0 10px 0;	
}

#actions a {
	font-size:110%;
	cursor:pointer;
	color:#B9CC1D;
	}

#actions a:hover {
		color:gray;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	border:1px gray outset;
	display:block !important;
	margin-left:5px;
	line-height:normal;
	color:gray;
	letter-spacing:normal;
	background-color:#000;
	padding:5px;
	text-align:left;
	color: #B9CC1D;
	padding-left:5px;
		
}
 .nextPage:hover {
	float:right;
	display:block !important;
	text-align:left;
	font-size:120%;
	color: gray;
	padding-left:5px;
		
}
.prevPage {
	float:left;
	border:1px gray outset;
	display:block !important;
	margin-left:5px;
	line-height:normal;
	color:gray;
	letter-spacing:normal;
	background-color:#000;
	padding:5px;
	text-align:left;
	color: #B9CC1D;
	padding-left:5px;
		
}
 .prevPage:hover {
	float:left;
	display:block !important;
	text-align:left;
	font-size:120%;
	color: gray;
	padding-left:5px;
		
}
