:root {
    --tsm-header-height: 50px;
    --tsm-footer-height: 20px;
	}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	}
#container{
	width: 100%;
	height: 100%;	
	margin: 0 auto;
	}
#header{
	width: 100%;
	height: var(--tsm-header-height);
	float: left;
	background-color: #04080f;
	}
#map {
	width:100%;
	height: calc(100% - var(--tsm-header-height) - var(--tsm-footer-height));
	float: left;
	}
#footer{
	width: 100%;
	height: var(--tsm-footer-height);
	float: left;
	}