div.photobook-gallery-photos
{
	margin-top: 6px;
	margin-bottom: 6px;
}

a.photobook-gallery-photo
{
	position: relative;
	display: block;
}

a.photobook-gallery-photo:before
{
	position: absolute;
	display: block;
	content: ' ';
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	background: #000000;
}

a.photobook-gallery-photo div.photo-caption
{
	position: absolute;
	left: 6px;
	right: 6px;
	bottom: 6px;
	padding: 12px;
	background: rgba(0, 0, 0, .5);
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	opacity: 0;
	text-align: center;
	transition: all .2s;
}

a.photobook-gallery-photo:hover div.photo-caption
{
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
}

a.photobook-gallery-photo.photobook-gallery-photo-folder div.photo-caption
{
	bottom: 15%;
	padding: 24px 12px;
	font-size: 17px;
	font-weight: 500;
	opacity: 1;
}

a.photobook-gallery-photo.photobook-gallery-photo-folder:hover div.photo-caption
{
	background: rgba(0, 0, 0, .75);
}

a.photobook-gallery-photo div.photo-image
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 1);
	opacity: .8;
	transition: all .2s;
}

a.photobook-gallery-photo:hover div.photo-image
{
	box-shadow: none;
}

a.photobook-gallery-photo:hover div.photo-image
{
	opacity: 1;
}