/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 250px;
	/*border-top:1px solid #ddd;*/

	/*background-color: #DDDDDD;*/

}

/* 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 {
	border-bottom:1px solid #ddd;
	margin:5px 0;
	/*padding:15px;*/
	font-size:12px;
	height:auto;
	
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}
/*- List1 -*/
.items.list1 ul{
	margin: 0 0 1em
}
.items.list1 li{
	background: url(../images/ico-list.gif) no-repeat 0 5px;
	margin: 0 0 .2em;
	padding: 0 0 0 3px
}
.items.list1 li a{
	color: #333333
}
/* the action buttons above the scrollable */
#actions {
	width: 250;
	margin:10px 0 10px 0;
	text-align: right;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;
}

.nextPage {
	/*float:right;*/
}


