.easyGallery {}
.easyGallery .item {
	background-color: white;
	display: inline-block;
	margin: 20px;
	position: relative;
	vertical-align: middle;
	z-index: 2;
	zoom: 1;
	*display: inline;
}
.easyGallery .item:before,
.easyGallery .item:after {
	background: white;
	border: 1px solid #DCDCDC;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	bottom: 0;
	content: "";
	left: 2px;
	position: absolute;
	right: -2px;
	top: 0;
	z-index: -1;
}
.easyGallery .item .easyGallery-loader{
	position: absolute;
	bottom: 5px;
	left: 45%;
}
.easyGallery .item:before {
	-webkit-transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
	transform: rotate(-4deg);
	left: -3px;
	right: 3px;
	top: -2px;
	bottom: 2px;
}
.easyGallery .item:after {
	-webkit-transform: rotate(6deg);
	-moz-transform: rotate(6deg);
	transform: rotate(6deg);
}
.easyGallery .item a {
	background: white;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: block;
	padding: 10px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	text-decoration: none;
}
.easyGallery .item a img {
	border: none;
}
.easyGallery .item a figure {
	text-align: center;
}
.easyGallery .item:hover a {
	-webkit-transform: scale(1.05) rotate(-1deg) translateZ(0);
	-moz-transform: scale(1.05) rotate(-1deg) translateZ(0);
	transform: scale(1.05) rotate(-1deg) translateZ(0);
}
.easyGallery .item a figure figcaption {
	overflow: hidden;
	text-overflow: ellipsis;
}