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

/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 450px;
	width: 750px;
	border-top:1px solid #ddd;
	margin: auto;
}

/* 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 {
	margin:10px 0;
	padding:0px;
	font-size:12px;
	height:550px;
}

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

/* the action buttons above the scrollable */
#actions {
	width:750px;
	margin:30px auto 20px auto;
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
.text {
	z-index: 2;
	left: 572px;
	width: 177px;
	top: -550px;
	position: relative;
}
