
/* root element for scrollable */
.vertical {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 115px;
    width: 250px;
}

/* 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:0;
    padding:0;
    font-size:12px;
	line-height:120%;
    height:125px;
}

#actions {
    position:relative;
	text-align:center;
	padding:150px 0 0;
}
#actions a {
    cursor:pointer;
}
.disabled {
    visibility:hidden;
}
/*
.prev {
	position:relative;
	top:125px;
	left:200px;
	text-align:center;
}*/
/*
.next {
    float:right;
}*/
/* up and down */
a.up, a.down  {
    background:url(/media/img/scrollable/arrow/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}
