.photo-grid {
	list-style: none;
	max-width: 1106px;
	padding: 0px;
	text-align: center;
}

.photo-grid li {
		-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-ms-border-radius: 0.5em;
	-o-border-radius: 0.5em;
	border-radius: 0.5em;
	border: 5px solid white;
	display: inline-block;
	height: 200px;
	line-height: normal;
	transition: all 500ms;
	width: 550px;
	cursor:pointer;
}

.photo-grid img {
	display: block;
	height: auto;
	transition: all 300ms;
	max-width: 100%;
	
}

.photo-grid li:hover img {
	-webkit-transform: scale(1.4);
	
}

.photo-grid figure {
	height: 200px;
	margin: 0px;
	overflow: hidden;
	position: relative;
	width: 550px;
}

.photo-grid figcaption {
	background: rgba(0,0,0,0.8);
	color: white;
	display: table;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 300ms;
	transition-delay: 100ms;
	width: 100%;
	z-index: 100;
}

.photo-grid li:hover figcaption {
	opacity: 1;
}

.photo-grid figcaption p {
	display: table-cell;
	font-size: 18px;
	position: relative;
	top: -40px;
	width: 550px;
	text-align: center;
	transition: all 300ms ease-out;
	vertical-align: middle;
}

.photo-grid figcaption p:empty {
display: none;
}

.photo-grid li:hover figcaption p {
	-webkit-transform: translateY(40px);
}

.photo-grid br {
	display: none;
}