.lightbox {
	/** Hide the lightbox */
	display: none;

	/** Apply basic lightbox styling */
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: black;
	background: rgba(140,140,140,.95);
}

.lightbox img {
	max-width: 100%;
	max-height: 100%;
	margin-top: 0;
}

.lightbox:target {
	/** Show lightbox when it is target */
	display: block;
	/** Remove default browser outline style */
	outline: none;
}

.box-content{
	background:none;
	height: auto;
	left: 0;
	margin: auto;
	max-width: 920px;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50px;
}

.box-close{
	background: #D70E0E;
	border-radius: 7px;
	color: #fff;
	left: 0;
	margin: 20px auto;
	padding: 5px 10px;
	position: absolute;
	top: -65px;
	right: 0;
	text-decoration: none;
	width: 90px;
}
.box-close:hover{
	background: #600;
	color: white;
	text-decoration: none;
}