body {
	background-color: #222;
	text-align: center;
}

#gallery-header {
	background: rgba(34, 34, 34, 0.75);
	margin-top: -2em;
	position: fixed;
	z-index: 100;
	color: #ddd;
	font-family: "HelveticaNeue-Light", sans-serif;
	font-size: 18pt;
	text-shadow: 1px 1px 2px #000;
	padding: 0.25em;
	width: 100%;
	height: auto;
}

footer {
	background: rgba(34, 34, 34, 0.75);
	position: fixed;
	bottom: 0px;
	z-index: 100;
	color: #888;
	font-family: "HelveticaNeue-Light", sans-serif;
	font-size: 12pt;
	padding: 0.25em;
	width: 100%;
	height: auto;
}
footer a { text-decoration: none; color: #bbb; }
footer a:hover { color: #fff; }

#content {
	margin-top: 4em;
	padding-left: 5em;
	padding-right: 5em;
}

#gallery-description {
	font-family: "HelveticaNeue-thin", sans-serif;
	font-size: 12pt;
	color: #aaa;
}

.photo-wrap {
	width: 240px;
	height: 240px;
	padding: 0px;
	margin: 1em;
	border: 0px solid #f00;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;

}

.photo-link {
	
}

.photo-link img {
	border: 1px solid #000;
	position: relative;
	max-width: 240px;
	max-height: 240px;

	/* vertical centering */
	top: 50%;
	transform: translateY(-50%);
}

.photo-description {
	font-family: "HelveticaNeue-Light", sans-serif;
	font-size: 12pt;
	color: #aaa;
	margin-bottom: 0.5em;
}

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.85);

	font-family: "HelveticaNeue-Regular", sans-serif;
	font-size: 14pt;
	color: #fff;
}

.lightbox a{
	text-decoration: none;
	color: #999;
}
.lightbox a:hover { color: #fff; }

.lightbox img {
	/** Pad the lightbox image */
	max-width: 95%;
	max-height: 80%;
	margin-top: 2%;
	padding: 5px;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}