/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 350px;
	width: 960px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000;
}

/* 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 {
	font-size:12px;
	height:100px;
	padding-top: 8px;
	padding-bottom: 7px;
	width: 480px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #369;
	float:left;
}

.itemRight {
	padding-left:30px;
	font-size:12px;
	height:100px;
	padding-top: 8px;
	padding-bottom: 7px;
	width: 450px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #369;
	float:right;
}



/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:100px;
	width:100px;
}

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

.item h4 {
	font-weight:bold;
	font-size:14px;
	color:#BDF;
	margin-bottom:10px;
}

.item a:link{
	color:#0CF;
	text-decoration:none;
}	

.item a:hover{
	color:#0CF;
	text-decoration:underline;
}

.item a:visited{
	color:#0CF;
}



/* elements inside single item */
.itemRight img {
	float:left;
	margin-right:20px;
	height:100px;
	width:100px;
}

.itemRight h3 {
	margin:0 0 1px 0;
	font-size:16px;
	color:#FFF;
	font-weight:normal;
}

.itemRight h4 {
	font-weight:bold;
	font-size:14px;
	color:#BDF;
	margin-bottom:10px;
}

.itemRight a:link{
	color:#0CF;
	text-decoration:none;
}	

.itemRight a:hover{
	color:#0CF;
	text-decoration:underline;
}

.itemRight a:visited{
	color:#0CF;
}


/* the action buttons above the scrollable */
#actions {
	width:960px;
	margin:25px 0 4px 10px;
	float: left;
}

#actions a {
	font-size:12px;		
	cursor:pointer;
	color:#BDF;
}

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
