
.gallery_photos {
	position: relative;
}
.gallery_title {
	font-size: 20px;
	margin-top: 30px;
	margin-left: 3px;
}
.gallery_img_element
{
	position: absolute;
	background-size:100%;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 0;
	float: left;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.gallery_container {
	clear:both;
}
.gallery_go_to_next_page {  
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
}
.gallery_date_layer {  
	background: rgba(0, 0, 0, 0.25);
	background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
	background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
	background: -moz-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
	background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
	cursor: pointer;
	width: 100%;
	height: 100%;  
	position: relative;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.gallery_date_layer:hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.gallery_date_layer .gallery_content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
    margin: 10px;
}
.gallery_title_text {
	opacity: 0.8;
}
.gallery_date_text {  
	text-align: right;
	opacity: 0.5;
}