html, body {
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	font-family: arial;
	color:rgb(96, 96, 96);
	overflow-x:hidden;
}		
.center {
	margin:0 auto;
	width: 960px;			
}
.left {
	float: left;
}

.brand {
	margin-top: 36px;
}

.logo {
	position: relative;
	width: 77px;
	height: 63px;
}

.name {
	color:rgb(96, 96, 96);
	font-size: 24px;
	padding:19px 0 16px 15px;
}

.circle-small {
	position: absolute;
	width:40px;
	height:40px;
	top:1px;
	left:1px;
	background-color: rgba(0, 136, 203, 0.7);
	border-radius: 50%;
}

.circle-large {
	position: absolute;
	width:55px;
	height:55px;
	top:6px;
	left:20px;
	background-color: rgba(60, 178, 178, 0.8);
	border-radius: 50%;
}

.content {
	background-color: #e6e6e6;
	position: relative;
}

.wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.header{
	height: 110px;
}
.footer {
	background-color: #000;
	color:#fff;
	font-size: 13px;
}
.content {
	flex: 1;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
 
.clearfix {
    display: inline-block;
}
 
html[xmlns] .clearfix {
    display: block;
}
 
* html .clearfix {
    height: 1%;
}

.info {
	width: 320px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -330px;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.61);
	color:rgb(96, 96, 96);
	z-index:1000;

	-webkit-transition: right 0.5s 0.5s;
   	-moz-transition: right 0.5s 0.5s;
   	-ms-transition: right 0.5s 0.5s;
   	-o-transition: right 0.5s 0.5s;
   	transition: right 0.5s 0.5s;

	-webkit-transform: translateZ(0);
   	-moz-transform: translateZ(0);
   	-ms-transform: translateZ(0);
   	-o-transform: translateZ(0);
   	transform: translateZ(0);
}

.info.show {
	right:0;
}

.info > p {
	margin:0;
	padding:10px;
	background-color: rgb(0, 136, 203);
	color:#fff;
	font-weight: bold;
}

.info > p:last-child {
	position: absolute;
	width: 320px;
	bottom: 0;
}

.info > ul {
	margin:25px 0;
}

.info > ul > li {
	margin-top:6px;
}

.box {
	float: left;
	width: 210px;
	height: 70px;
	margin: 18px 0 5px 110px;
	position: relative;
}

.box > img {
	position: absolute;
	left: -41px;
	top: 10px;
	width: 25px;
}

.box .web-icon {
	width: 48px;
	left: -64px;
	top: 15px;
}

.box > p {
	margin:2px 0 0 0;
}

.box > p:first-child {
	margin:0;
	font-weight: bold;
}

.box a {
	color: #fff;
	text-decoration: none;
}

.box a:hover {
	text-decoration: underline;
}

#map-canvas { 
	height: 100%;
	min-height: 500px;
}

.copyright {
	color:#fff;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 20px;
}

@media only screen and (max-width : 959px) {
	.center {
		width:100%;
	}
}

@media only screen and (max-width : 420px) {
	.name {
		font-size: 17px;
		padding-left: 10px;
	}
}