/* root element for scrollable */
.vertical {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollers have typically larger height than width */
	height: 545px;
	width: 480px;
	border-top:1px solid #000;
}

/* root element for scrollable items */
.items {
	position:absolute;

	/* this time we have very large space for height */
	height:20000em;
	margin-top: 0px;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #000;

    margin-top:10px;
	font-size:12px;
	height:125px;
}

/* elements inside single item */
.item img.gallery-main-pic {
	float:left;
	margin-right:20px;
	height:109px;
	width:140px;
    border:solid #fff 2px;
}
.item img.extra-pic {
  margin-right:5px;
  border:solid #fff 2px;
	height:35px;
	width:50px;
}
.item-first{
  padding-top:10px;
}


.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#fff;
	font-weight:normal;
   
}

/* the action buttons above the scrollable */
#actions {
	width:480px;
	margin:30px 0 10px 0;
}

#actions a {
	font-size:13px;
	cursor:pointer;
	color:#fff;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;
}

