*
{
margin: 0;
padding: 0;
}
body
{
background: #fff;
font-family: arial, verdana, tahoma;
}
.gallery
{
	width: 1250px;
	height: 500px;
	overflow: hidden;
	margin: 30px auto;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}
.gallery ul
{
	width: 2000px;
}
.gallery li{
position: relative;
display: block;
width: 180px;
float: left;
border-left: 1px solid #888;
box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
}
.gallery ul:hover li{
width: 40px;
}
.gallery ul li:hover {
width: 600px;
}
.gallery li img {
display: block;
}
.image_title{
background: rgba(0, 0, 0, 0.5);
position: absolute;
left: 0;
bottom: 0;
width: 600px;
}
.image_title span {
display: block;
color: #fff;
padding: 20px;
font-size: 16px;
}