/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */
	background-image: url(http://www.fashion.net/images/listings_background.png);
	background-repeat: no-repeat;
	height: 133px;	 
	width: 505px;
}

/* 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:133px;
	width:430px;
	padding-top: 7px;
}

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

.item h3 {
	font-weight:normal;
}

/* the action arrows */
#actions {
/*	margin-top: 55px; */
	width:475px;
}

#actions a {
	cursor:pointer;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
