:root{
--sidebar-width:30%;
--map-width:70%
}

/* standard elements */
* {
	margin: 0;
	padding: 0;
}

a {
	color: #36C;
}

a:hover {
	color: #06F;
}

html,body  {
	background:			#fff;
	font-family:		"arial",sans-serif;
	font-size:			8pt;
	text-align:			left;
	color:				black;
	margin-top:			0px;
	width:100%;
	height:100%;
}

header{
	position:relative;
	width:100%;
	height:15%;
	max-height:15%;
}

header > img{

	position: inherit;
	width:100%;
	max-width: 100%;
	max-height: 100%;
}

div#container{
	position:relative;
	display:inline-flex;
	width:100%;
	max-width: 100%;
	height:85%;
	max-height: 85%;
	padding:0%;
	margin:0%;
}

aside#sidebar{
	position:inherit;
	width:var(--sidebar-width);
	max-width:var(--sidebar-width);	
	height:100%;
	max-height: 100%;
	text-align: center;
	display:block; 
	background-image: url("../images/marianne.jpg");
	background-repeat: repeat;
}

aside#sidebar > *{
	/* position:relative; */
}

aside > * {
	position:inherit;
}

aside > figure > img {
	width:90%;
	max-width:100%;
}

div#map{	
	position: inherit;
	width:var(--map-width);
	max-width:var(--map-width);
	height:100%;
	max-height: 100%;
}

