.gallery {
margin: auto;
}

.gallery .gallery-item {
float: left;
margin-top: 10px;
text-align: center;
width: 25%;
}

.gallery p{
margin-bottom: 0;
}
.gallery img {
transition: all 200ms ease-in-out 0s;
-webkit-transition: all 200ms ease-in-out 0s;
-moz-transition: all 200ms ease-in-out 0s;
-ms-transition: all 200ms ease-in-out 0s;
-o-transition: all 200ms ease-in-out 0s;
background: none repeat scroll 0 0 #333333;
border: 1px solid #e5e5e5;
width: 90%;
box-shadow: 0 1px 5px #dddddd;
padding: 3%;
}

.gallery img:hover {
transition: all 200ms ease-in-out 0s;
-webkit-transition: all 200ms ease-in-out 0s;
-moz-transition: all 200ms ease-in-out 0s;
-ms-transition: all 200ms ease-in-out 0s;
-o-transition: all 200ms ease-in-out 0s;
border: 1px solid #f2f2f2;
width: 90%;
box-shadow: none;
}

.gallery .gallery-caption {
font-size: 13px;
font-weight: 300;
padding: 5px;
}
