/*////////////////////////////////// ENLARGE //////////////////////////////////*/
.clickToEnlarge{
	margin-left: 82px;
}
a.lightbox img {
	display: block;
	margin: 6px auto;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */
.lightbox-target {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -100%;
	background-color: rgba(0, 0, 0, .7);
	opacity: 0;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
	overflow: hidden;
	z-index: 10;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
.lightbox-target img {
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 0%;
	max-width: 0%;
	padding: 20px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
	box-sizing: border-box;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	background-color: #FFF;
}

/* Styles the close link, adds the slide down transition */
a.lightbox-close {
	display: block;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	background-color: #FFF;
	color: #000;
	text-decoration: none;
	position: absolute;
	top: -80px;
	right: 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:before {
	content: "";
	display: block;
	height: 30px;
	width: 1px;
	background-color: #000;
	position: absolute;
	left: 26px;
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:after {
	content: "";
	display: block;
	height: 30px;
	width: 1px;
	background-color: #000;
	position: absolute;
	top: 10px;
	left: 26px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.lightbox-target:target {
	opacity: 1;
	top: 0;
	bottom: 0;
}

.lightbox-target:target img {
	max-height: 85%;
	max-width: 85%;
}

.lightbox-target:target a.lightbox-close {
	top: 0;
}