@charset "utf-8";
/* CSS Document */


div.image {
	position: relative;
	overflow: hidden;
	width: 215px;
	height: 143px;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.3);
}

.gall {
	position: absolute;
	left:0;
	top:0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

span.title {
	width: 215px;
	height: 29px;
	position: absolute;
	background:#333;
	text-align: center;
	padding: 5px 0 4px;
	font-size: 14px;
	color: white;
	font-family: "Roboto", Arial, sans-serif;
	
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	
}
div.image.slideUp span { 
	bottom: -29px;
}

div.image.slideUp:hover img {
	top: -29px;
}

div.image.slideUp:hover span {
	bottom: 0px;
}
