.lastkroj{
margin:10px auto;
width:300px;
border:2px solid #f1e9f1;

}

.lastkroj p{
font-family:Trebuchet MS;
font-weight:700;
font-size:105%;
color:#7d67ac;
padding:5px 10px;
}

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

	/* vertical scrollers have typically larger height than width */	
	height: 295px;	 
	width: 300px;
	
}

/* 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 {

	margin:5px auto;
	height:295px;
	
}

/* elements inside single item */
.item div {
	float:left;
	margin-left:10px;
	height:145px;
	width:85px;
	
}

.item div img{
margin-top:-5px;
margin-left:-10px;
}

.item div p {
}

/* the action buttons above the scrollable */
#actions {
	width:300px;
	margin:5px 0;	
	text-align:left;
	background:#ffffff;
}

#actions a {
	font-size:11px;		
	cursor:pointer;

}

#actions a:hover {
	text-decoration:underline;

}

.disabled {
	visibility:hidden;		
}

.prev{
margin-left:30px;
}

.next {
	float:right;
	margin-right:30px;
}	
