@charset "UTF-8";
/* CSS Document */

/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	float:left;
	height: 165px;
	width: 230px;
	border-bottom:1px solid #ddd;
	top: 4px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:223991px;
	margin: 0px;
	width: 230px;
	top: 6px;
	left: 3px;
}
.items strong{
	font-weight:bold;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:4px 0;
	padding: 5px;
	font-size:0.7em;
	height:auto;
}

/* elements inside single item */
.items img {
	float:left;
	margin:0 6px 0 0;
	height:46px;
	width:26px;
}

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

/* the action buttons above the scrollable */
#actions {
	position:absolute;
	width:26px;
	float:left;
	margin: 0;
	left: 937px;
	top: 492px;
	height: 55px;
}

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

#actions a:hover {
	text-decoration:none;
	color:#fff;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}
.prevPage {
	float:right;
}	
#itemDiv{
	
}

