.maze-img, .maze-map {
	border: solid 1px white;
	display: inline-block;
	margin: 5px 10px;
	border-collapse: separate;
	border-spacing: 0px;
	padding: 2px;
}
.maze-img TD, .maze-map TD {
	width: 42px;
	height: 30px !important;
	margin: 0px;
	padding: 0px;
	border-style: none;
}
.maze-map{
	position: relative;
	counter-reset: list1;
}
.maze-map TR:before {
	counter-increment: list1;
	content: counter(list1);
	right: 100%;
	width: 25px;
	line-height: 30px;
}
.maze-map TR:first-of-type TD:before {
	bottom: 100%;
	width: 42px;
	line-height: 20px;
}
.maze-map TR:before,
.maze-map TR:first-of-type TD:before {
	position: absolute;
	display: block;
	font-size: 10px;
	text-align: center;
	color: #888;
}
.maze-map TR:first-of-type TD:nth-of-type(1):before {content:'A'}
.maze-map TR:first-of-type TD:nth-of-type(2):before {content:'B'}
.maze-map TR:first-of-type TD:nth-of-type(3):before {content:'C'}
.maze-map TR:first-of-type TD:nth-of-type(4):before {content:'D'}
.maze-map TR:first-of-type TD:nth-of-type(5):before {content:'E'}
.maze-map TR:first-of-type TD:nth-of-type(6):before {content:'F'}
.maze-img TD {
	background-size: cover;
}
.maze-map TD {
	position: relative;
	color: white;
}
.maze-map TD:after {
	position: absolute;
	display: block;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	line-height: 30px;
	text-align: center;
	border: solid 1px transparent;
}