.galleryLabel {
	margin-bottom: 15px;
}

.content {
	text-align: center;
}

.content .footer {
	text-align: center;
	margin-top: 10px;
}

div.content span{
	font-size: 10px;
	/*margin-left: 60px;*/
	text-align:center;
}

div.content .gallery {
	display: inline-block;
    margin: 10px 20px;
}

div.content .gallery div {
	text-align: center;
    font-size: 16px;
    margin: 5px;
}

ul.lightgallery li {
	display: none;
}

ul.lightgallery li:first-child {
	width: 200px;
    height: 200px;
    display: inline-block;
    margin: 5px 15px 25px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(15,3,1,0.7);
	-moz-box-shadow: 1px 1px 10px 0px rgba(15,3,1,0.7);
	box-shadow: 1px 1px 10px 0px rgba(15,3,1,0.7);
	overflow: hidden;
	background-color: black;
}

.lightgallery li:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
	opacity: 0.7;
}

.lightgallery img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    width: 100%;
	max-width: 100%;
	height: 100%;
    max-height: 100%;
    display: block;
	cursor: pointer;
}