/* CSS Document */
#uparrow, #downarrow {
	position: absolute;
	left: 490px;
	top: 140px;
	width: 20px;
	height: 30px;
	z-index: 4;
	background-image: url(images/arrowup-idle.png);
	background-repeat: no-repeat;
}
#downarrow {
	top: 175px;
	background-image: url(images/arrowdown-idle.png);
}
.disclaimerscroll {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	font-weight: normal;
}
/* root element for scrollable */
.scrollable {

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

	/* vertical scrollables have typically larger height than width but not now */
	height: 370px;
	width: 165px;
}

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

	/* this time we have very large space for the height */
	height:20000em;
}
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 165px;
	width: 470px;
/*	border: 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 {
/*	border-bottom:1px solid #ddd;*/
/*	font-size:11px;*/
}
/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

.disabled {
	visibility:hidden;		
}

.next {
/*	float:right;*/
}
