/* Image Box */
.imagebox {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
@media only screen and (max-width: 64em) {
	.imagebox {
		max-width: 480px;
	}
}
.imagebox img {
	display: block;
	width: 100%;
}
.imagebox .link {
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
	height: 40px;
	padding: 0 15px;
}
.imagebox .link a {
	display: inline-block;
	padding: 0 15px;
	border: 1px solid #fff;
	background-color: #00adbb;
	color: #fff;
	font-size: 18px;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
	overflow: hidden;
	opacity: 1;
}
.imagebox .link a:hover {
	border: 1px solid #fff;
	color: #fff;
}
