/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollers have typically larger height than width */	
	height: 665px;	 
	width: 420px;
	border-top:1px solid #ddd;	
	

}

/* 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:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;
	line-height: 1.5em; 
}

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

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

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

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

.BoxTitleLink {COLOR: #003; TEXT-DECORATION: none; font-family: Arial; font-size: 16px; font-weight: Bold; cursor: hand;}
a:link.BoxTitleLink  {color : 003; text-decoration: none; font-size: 16px; font-weight: Bold; cursor: hand;}
a:visited.BoxTitleLink  {color : 003; text-decoration: none; font-size: 16px; font-weight: Bold; cursor: hand;}
a:active.BoxTitleLink  {color : 003; text-decoration: none; font-size: 16px; cursor: hand;}
a:hover.BoxTitleLink  {color : 003; text-decoration: none; font-size: 16px; cursor: hand;}


.BoxTitleText {COLOR: #000000; TEXT-DECORATION: none; font-family: Arial; font-size: 10px; font-weight: Bold; cursor: hand;}
a:link.BoxTitleText  {color : #000000; text-decoration: none; font-size: 10px; font-weight: Bold; cursor: hand;}
a:visited.BoxTitleText  {color : #000000; text-decoration: none; font-size: 10px; font-weight: Bold; cursor: hand;}
a:active.BoxTitleText  {color : #000000; text-decoration: none; font-size: 10px; cursor: hand;}
a:hover.BoxTitleText  {color : #000000; text-decoration: underline; font-size: 10px; cursor: hand;}

