
/* Thumbnails */

.sp-thumbs {
	text-align: center;
	display: inline-block;
	margin:10px;
}
.sp-thumbs img {
	min-height: 60px;
	min-width: 60px;
	max-width: 60px;
}
.sp-thumbs a:link, .sp-thumbs a:visited {
	width: 60px;
	height: 60px;
	border:#ababab solid 1px;
	margin:3px;
	overflow: hidden;
	opacity: .5;
	display: inline-block;
	background-size: cover;
	background-position: center;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}
.sp-thumbs a:hover {
	opacity: 1;
}

/* Styles for the currently selected thumbnail */

.sp-thumbs a:active, .sp-current {
	opacity: 1!important;
	position: relative;
}

/* Image currently being viewed */
.items_image_main {width:100%; overflow: hidden;}
.sp-current-big {
	position: relative;
	overflow: hidden;
	top: 0;
	left: 0;
}
.sp-current-big img {
	max-height:300px;
    max-width: none;
 }