/* root element for scrollable */
div.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 147px;
    width: 285px;
}

/* root element for scrollable items */
div.scrollable div.items {
    position:absolute;

    /* this time we have very large space for the height */
    height:20000em;
}

/* root element for scrollable */
.vertical {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollers have typically larger height than width */
	height: 147px;
	width: 275px;
}

/* 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 {
	border-bottom:2px solid #780200;
	font-size:14px;
	height:180px;
}

/* the action buttons below the scrollable */

#actionButtons {
	text-align:center;
	margin-top:5px;
}

.actionbutton{
	font-size:		8pt;
	background-color:	#C26B32;
	color:			#3D0808;
	border-top:		1px solid #D27B42;
	border-left:		1px solid #D27B42;
	border-bottom:		1px solid #B25B22;
	border-right:		1px solid #B25B22;
}
