/* Gallery pictures
-----------------------------------------------------------------------------*/
.square {
	float: left;
	display: inline;
	line-height:1em;
}
a.gallery {
	color:dimgrey;
	font-family: 'Quicksand', sans-serif;
	text-decoration:none;
}
.crop {
	width:200px;
	height:200px;
	overflow: hidden;
	position:relative;
}
.picture,.description-background,.description-name {
	position:absolute;

	width:100%;

	height:100%;
	top:0;
	left:0;

}

.picture img{

	width:100%;

	filter:grayscale(80%) contrast(120%);
	-webkit-filter:grayscale(80%) contrast(120%);

}
.description-background {
	background:rgba(255,255,255,0.8);
	opacity:0;
	z-index:10;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
.description-name {
	opacity:0;
	z-index:15;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	pointer-events: none;
	display:table;
}
.description-name h3 {
	font-family: 'Quicksand', sans-serif;
	color:black;
	display:table-cell;
    vertical-align:middle;
    text-align:center;
}
.description-background:hover {
	opacity:1.0;
}
.description-background:hover + .description-name {
	opacity:1.0;
}