

.album-box {
	width: auto;
	height: auto;
	padding: 16px 0 0 0;
}

.album-box a {
	width: 200px;
	height: 200px;
	display: block;
	float: left;
	margin: 0 14px 14px 0;
	border: 3px solid #fff;
	border-radius: 4px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.2s ease;
}


.album-box a:hover {
	opacity: 0.85;
}

.album-box a:active {
	opacity: 0.6;
}

.album-box a span {
	display: block;
	width: auto;
	min-width: 176px;
	height: auto;
	line-height: 18px;
	position: absolute;
	bottom: 0;
	background-color: rgba(0,0,0,0.8);
	margin: 0;
	text-align: center;
	border-radius: 0 0 4px 4px;
	padding: 6px 12px;
	color: #fff;
}

.album-box a span div {
	width: auto;
	height: auto;
	max-height: 54px;
	overflow: hidden;
}




.album-box-large a {
	width: 250px;
	height: 250px;
	margin: 0 25px 25px 0;
	border: 0;
	border-radius: 0;
}

.album-box-large a span {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: rgba(0,0,0,0.3);
	transition: background 0.2s ease;
	padding: 0;
}

.album-box-large a span:hover {
	background-color: rgba(0,0,0,0.5);
}

.album-box-large a span div {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: none;
	line-height: 22px;
	height: auto;
	max-height: none;
	padding-left: 10px;
	padding-right: 10px;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}











