@charset "utf-8";
/* CSS Document */
.gallery {
	position: relative;
	text-align: center;
	top: 0;
	left: 0;
	width: 100%;
	width: auto;
}
.gallery .arrow {
	display: none;
	position: absolute;
	cursor: pointer;
	width: 46px;
	z-index: 999;
	top: 0;
	height: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	opacity: 0.3;
}
.gallery .arrow, .gallery .slider-info {
	text-align: center;
	background-color: #000;
}

.gallery .arrow.slider-back {
	left: 0;
	padding-right: .1em;
	background: url(/assets/img/gallery-arrow-lt.png) no-repeat center center ;
}
.gallery .arrow.slider-forward {
	right: 0;
	padding-left: .1em;
	background: url(/assets/img/gallery-arrow-rt.png) no-repeat center center ;
}
.gallery .arrow.slider-back:hover {
	background: rgba(0,0,0,0.4) url(/assets/img/gallery-arrow-lt-hover.png) no-repeat center center ;
	opacity: 1;
}
.gallery .arrow.slider-forward:hover {
	background: rgba(0,0,0,0.4) url(/assets/img/gallery-arrow-rt-hover.png) no-repeat center center ;
	opacity: 1;
}
.gallery:hover .arrow, .gallery:hover .slider-info {
	display: block;
}
.swipe-wrap img {
	width: 100%;
}
.swipe-header, .swipe-comment {
	color: #dddddd;
	display: block;
	text-align: left;
}
.swipe-header {
	font-weight: bold;
	font-size: 110%;
}
a[tabindex="set this to -1 to hide a with empty href"] {
    display: none;
}

/* Making a Difference Gallery Styles */
figure.gallery.making-diff {
	position: relative;
	background: #1d1d1d;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 10px;
	margin: 20px 0;
}
.gallery.making-diff .gallery-img {
	margin-bottom: 1em;
	width: calc(100% - 300px);
	min-width: 60%;
	max-width: 650px;
	left: 0;
	vertical-align: top;
	position: relative;
}

.gallery.making-diff .gallery-tmb {
	position: absolute;
	width: 300px;
	max-width: 40%;
	max-height: 100%;
	right: 0;
	top: 0;
	padding: 5px 15px 5px 10px;
	overflow-y: auto;
	overflow-x: hidden;
}
.gallery.making-diff .gallery-group {
	display: block;
	float: left;
	width: 50%;
	position: relative;
	padding: 7px;
}
.gallery.making-diff .gallery-group a {
	color: #fff;
}
.gallery.making-diff .gallery-group a:hover {
	color: #fdb813;
}
.gallery.making-diff .gallery-group a:hover img {
	border: solid 3px #fdb813;
}
.gallery.making-diff .gallery-group a img {
	display: block;
	border-radius: 50%;
	border: solid 3px #fff;
}
.gallery.making-diff .gallery-group a span {
	display: block;
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translate(0, -50%);
	transform: rotate(-20deg);
	left: 3px;
	background-color: rgba(29, 29, 29, 1);
	padding: 3px 0 5px;
	text-decoration: none;
	font-family: "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-style: italic;
	font-size: 16px;
}


@media screen and (max-width: 960px) {
	.gallery.making-diff .gallery-img {
    margin-bottom: 1em;
    width: 100%;
    max-width: 100%;
	}
	.gallery.making-diff .gallery-tmb {
		position: relative;
		width: 100%;
		height: 140px;
		max-width: 100%;
		padding: 0;
		overflow-y: hidden;
		overflow-x: auto;
		white-space: nowrap;
	}
	.gallery.making-diff .gallery-group {
		display: inline-block;
		float: none;
		width: 120px;
		padding: 7px;
	}
}