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

#experimento {
	height: 450px;
	width: 600px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align:left;
	overflow-y: hidden;
	overflow-x: hidden;
	overflow: hidden;
}
#viewport_container {
	height: 450px;
	width: 600px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	overflow-y: hidden;
	overflow-x: hidden;
	overflow: hidden;
}
.vertical {
	/* required settings */
	position:relative;
	overflow-y: hidden;
	overflow-x: hidden;
	overflow: hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 450px;
	width: 600px;/*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 */
.item {
	height:450px;
}
/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:450px;
	width:600px;
}
.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}
/* the action buttons above the scrollable */
#actions {
	width:590px;
	display:block;
	background-color:#FFF;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
#actions a {
	font-size:11px;
	cursor:pointer;
	color:#666;
}
#actions a:hover {
	text-decoration:underline;
	color:#000;
}
.disabled {
	visibility:hidden;
}
.next {
	float:right;
}
