.port_skrol {  
	
	/* required settings */
	position:relative;
	overflow:hidden;
	margin:0 auto;

	/* vertical scrollers have typically larger height than width */	
	height: 465px;	 
	width: 600px;
	border-top:2px solid #439FD4;
	border-bottom:3px solid #439FD4;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	left:0;
	width:600px;
	/* this time we have very large space for height */	
	height:20000em;	
	margin:0 auto;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #439FD4;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:120px;
	/*margin-left:auto;
	margin-right:auto;*/
}

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

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#439FD4;
	font-weight:normal;
}
.items p{
	margin-top:15px;
}

/* the action buttons above the scrollable */
#actions {
	width:600px;
	margin:0 auto;
	text-align:center;
	padding-top:5px;
	padding-bottom:5px;
	padding-top:5px;
	vertical-align:middle;
	border-top:2px solid #439FD4;
}

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

#actions a:hover {
	text-decoration:none;
	color:#71D0FF;
}

.disabled {
	visibility:hidden;		
}
/*.prevPage {
	float:right;
}
.nextPage {
	float:left;
}*/