@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
body {
	background-color: #962b1b;
	overflow:hidden;
}
#top, #bottom, #left, #vcenter, #hcenter, #right {
	background-color: #2c7071;
	z-index: -1;
}
#signHolder {
	background-color: #2c7071;
}
#top, #bottom, #hcenter {
	height : 2vw;
	width: 100vw;
}
#left, #vcenter, #right {
	height: 100vh;
	width: 2vw;
}
#top {
	position: absolute;
	top: 0;
	left: 0;
}
#bottom {
	position: absolute;
	bottom: 0;
	left: 0;
}
#left {
	position: absolute;
	top: 0;
	left: 0;
	
}
#right {
	position: absolute;
	top: 0;
	right: 0;
}
#vcenter {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1vw;
}
#hcenter {
	position: absolute;
	top: 50%;
	margin-top: -1vw;
}
#signHolder {
	position: absolute;
	max-width: 500px;
	top: 50%;
	left: 50%;
	width: 50%;
	z-index: 2;
	padding: 2vw;
}
#signHolder img{
	width: 100%;
}
#phone {
	width: 50%;
	position: absolute;
	bottom: 2.5vw;
	left:50%;
	z-index: 3;
	max-height: calc((100vh - 8vw)/2);
	background: #FFF;
	border: solid black 2px;
	padding: 5px;
}
#address {
	width: 30%;
	position: absolute;
	top: 2.5vw;
	left:50%;
	z-index: 3;
	max-height: calc((100vh - 8vw)/2);
	background: #FFF;
	border: solid black 2px;
	padding: 5px;
}
