.footWrap {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	color: #AAA;
	margin: 0 auto;
}

.footAddress{
	display: block;
	text-align: center;
	padding: 5px 0;
	border-bottom: 1px solid #666;
}

.footPhones{
	display: block;
	text-align: center;
	padding: 5px 0;
	border-bottom: 1px solid #666;
}

.footHours{
	display: block;
	text-align: center;
	padding: 5px 0;
	border-bottom: 1px solid #666;
}

.footHeders {
	font-weight: bold;
}

.footLines {
	padding-left: 10px;
}

.copyDistance {
	display: flex;
	flex: 1 0 auto;
	justify-content: center;
	padding: 10px 0 5px 0;
	text-align: right;
}

@media only screen and (min-width: 768px) {
	.footPageWidth {
		display: block;
		max-width: 1000px;
		margin: 10px auto 0 auto;
	}

	.footWrap {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		font-size: 14px;
		color: #AAA;
	}

	.footAddress{
		display: inline-block;
		text-align: left;
		border-bottom: none;
	}

	.footPhones{
		display: inline-block;
		text-align: left;
		border-bottom: none;
	}

	.footHours{
		display: inline-block;
		text-align: left;
		border-bottom: none;
	}

	.footHeders {
		font-weight: bold;
	}

	.footLines {
		padding-left: 10px;
	}

	.copyDistance {
		display: flex;
		flex: 1 0 auto;
		justify-content: flex-end;
		padding: 10px 0 5px 0;
		text-align: right;
	}
}