/* root element for scrollable */
.vertical {  
	position:relative;
	overflow:hidden;
	height: 475px;	 
	width: 740px;
	border-top:1px solid #ddd;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	height:20000em;	
	margin: 0px;
}
.items  a {
	font-weight:bold;
	text-decoration:none;
	color:#ec6941;
}
.items  a:hover  {
	font-weight:bold;
	text-decoration:underline;
	color:#000;
}
/* single scrollable item */
.items div{
	border-bottom:1px solid #ddd;
	margin: 0;
	padding:10px 15px 25px 65px;
	_padding: 10px 15px 12px 65px;
	font-size:12px;
	width:700px;
	height:120px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:120px;
	width:180px;
}

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


/* the action buttons above the scrollable */
#actions {
	width:740px;
	height:10px;
	margin:10px 0 10px 0;
	_margin:10px 0 0px 0;	
	clear:both;	
}

#actions a {
	font-size:11px;
	font-weight:bold;
	text-decoration:none;	
	cursor:pointer;
	color:#ec6941;
}

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

.disabled {
	visibility:hidden;		
}
.prevPage {
	background: url(images/black_up.gif) no-repeat left center;
	float:left;
	text-align:left;
	padding-left:17px;
}	
.nextPage {
	background: url(images/black_down.gif) no-repeat right center;
	float:right;
	text-align:right;
	padding-right:17px;
}	

