/* root element for scrollable */
.vertical {
	/* required settings */
    position:relative;
	left: 295px;
	top: 5px;
	margin-bottom:5px;
	overflow:hidden;
	background: #212121;
	/* vertical scrollers have typically larger height than width */
    height: 562px;
	width: 675px;
}
/* root element for scrollable items */
.items {
    position:relative;
	/* this time we have very large space for height */
    height:20000em;
	margin: 0px;
}
/* single scrollable item */
.item {
	border-bottom:1px solid #ddd;
	margin:5px 0;
	padding:5px;
	font-size:12px;
}
.item p {
	margin:5px 10px;
}
/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:160px;
	width:240px;
}

.item h3 {
	margin:0 0 5px 0;
	padding-left: 10px;
	font-size:16px;
	color:#fff;
	font-weight:normal;
	letter-spacing:1px;
	text-transform: uppercase;
}

.item_full {
	border-bottom:5px solid #ddd;
	margin:5px 0;
	padding:5px;
	height:545px;
}
.item_full p {
	margin:0 10px;
}
.item_full h3 {
	margin:0 0 5px 0;
	padding-left: 10px;
	font-size:20px;
	color:#fff;
	font-weight:normal;
	letter-spacing:1px;
	text-transform: uppercase;
}
/* the action buttons above the scrollable */
#actions {
	position:relative;
	left: 285px;
	width: 655px;
	padding: 0 10px;
    margin:0 10px 0 10px;
	background: #212121;
}
#actions a {
	font-size:11px;
	cursor:pointer;
	color:#fff;
}
#actions a:hover {
	color: #ccc;
	text-decoration:none;
}
.prev {margin-left:580px;}
