/*
 Slide Box Portfolio | Scrollable vert css
 This documentation has been downloaded here
 http://flowplayer.org/tools/demos/scrollable/easing.html
 however has been modified
*/

/* root element for scrollable */
 .scrollable {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height:100%;	 
	width: 360px;
	float:right;	/* this makes it possible to add next button beside scrollable */
	display:inline;
	padding:5px 0px 5px 0px;
}
/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;	
	width:360px;
	margin:0px 0px 5px 0px;
	height:160px;
	cursor:pointer;
}

/* single scrollable item */
/* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* /* 

/*  next, nextPage buttons */
.prev {
	display:block;
	width:360px;
	height:30px;
	background:url(../images/up-button.png) no-repeat;
	float:left;
	cursor:pointer;
	clear:left;
}
.next {

	background:url(../images/down-button.png) no-repeat;
	cursor:pointer;
	bottom: 0;
	width:360px;
	height:30px;
	position:absolute;
	left:0px;
}