.albums-list {
	margin-bottom: -15px;
}

.albums-list:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.gallery-album-item {
	display: block;
	float: left;
	width: 220px;
	height: 220px;
	margin: 0 20px 20px 0;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}

.gallery-album-item img {
	width: 220px;
	height: 220px;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.gallery-album-item:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.gallery-album-item .title {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 10px 15px 10px 15px;
	background: rgba(52,26,17,0.6);
	font-size: 12px;
	color: #fff;
	line-height: 16px;
}

.show-more {
	display: inline-block;
	background: #d1a152;
	padding: 10px 0 10px 0;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	height: 18px;
	text-align: center;
	width: 130px;
	margin: 0 0 0 285px;
	border-radius: 3px;
	cursor: pointer;
}

.show-more:hover {
	background-color: #e8b35b;
}

.show-more span {
	color: #fff;
	border-bottom: 1px dotted #fff;
}

.photos-list:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.photos-list a {
	display: block;
	float: left;
	margin-right: 20px;
	width: 220px;
	background: url(/images/loading.gif) center center no-repeat;
}

.photos-list a div {
	width: 220px;
	height: 220px;
	overflow: hidden;
	margin-bottom: 20px;
}

.photos-list a img {
	vertical-align: top;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.photos-list a:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}