
html,
body {
  height: 100%;
  width: 100%;
  overflow: auto;
}


#map {
	background-color: #eeeeee;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

#sidebar {
	background-color: rgba(255, 255, 255, 0.9);
	position: absolute;
	
}

#menuButton {
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 40px;
	padding-top: 7px;
	line-height: 45px;
	text-align: center;
}


@media ( min-width: 1025px ){
	.mobileShow {
		display: none;
	}
	
	#map {
		right: 400px;
	}
	
	#sidebar {
		top: 0;
		right: 0;
		width: 400px;
		bottom: 0;
	}
	
}

@media ( max-width: 1024px ){
	.mobileShow {
		display: block;
	}
	
	#map {
		right: 0;
	}
	
	#sidebar {
		top: 0;
		right: -990px;
		width: 1000px;
		bottom: 0;
		display: none;
	}
}


#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 150px;
}

#panel {
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
	height: 120px;
}

#content {
	position: absolute;
	top: 270px;
	left: 0;
	right: 0;
	bottom: 170px;
	overflow-y: auto; 
}

#logos {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 80px;
	height: 90px;
}

#logos-content {
	position: absolute;
	bottom: 10px;
	right: 20px;
	vertical-align: bottom;
    display: table-cell;
}

#logos-content img {
	vertical-align: bottom;
	margin-left: 10px;
}

#footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background-color: #403d4a;
	font-size: 12px;
	color: #ffffff;
}

#footer a {
	color: #ffffff;
	text-decoration: none;
}


