/* root element for scrollable */
*{
	border:0;
}
html, body { height:100%; background-color: transparent;}
.vertical {

    /* required settings */
    position:relative;
    overflow:hidden;
	left:70px;
    /* vertical scrollers have typically larger height than width */
    height: 380px;
    width: 300px;
}

.centrada{
	width:1024px; 
	position:relative; 
	height:537px; 
	color:#000; 
	margin:0 auto; 
	z-index:2;
}
#rollo{
	position:absolute;
	top:0px; right:50px;
}
/* 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 {
	margin:5px 0;
    padding: 0 5px;
    height:90px;
}

/* elements inside single item */
.item img {
    float:left;
}


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

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

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

.disabled {
}

.next {
    float:right;
}
