/* root element for scrollable */
.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;
	text-align:justify;
	margin: 5px;
	/* vertical scrollers have typically larger height than width */	
	height: 515px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	text-align:justify;
	/* this time we have very large space for height */	
	height:500000em;	
	margin: 0px;
	color: #666666;
	font-family: Verdana;
	font-size: 11px;
}


/* the action buttons above the scrollable */
#actions {
	width:200px;
	text-align:center;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#FF6600;
}

#actions a.next {
  text-align: right;
  float: right;

}

#actions a:hover {
	text-decoration:underline;
	color:#FF6600;
}

.disabled {
	visibility:hidden;		
}

#next {
	float:right;
}	

#prev {
	float:left;
}	

.insidebox {
	text-align:center;
	clear: both;
}

.logoframe{

	text-align:center;
	clear: both;
	margin: 10px;
}

/* elements inside single item */
.insidebox img {
	margin:1px;
	padding:5px;
}