@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: 460px;
    width: 735px;
}

/* 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:460px;
}

.disabled {
	visibility:hidden;
}
