html { height:100%; }
body {
	margin-left: auto;
	margin-right: auto;
	width: 92%;
    max-width: 960px;
    min-height:99%;
    display:flex;
    flex-direction:column;    
    font-family:Helvetica,Arial;
    }

body > div { 
	width:100%;
	box-sizing:border-box; 
}

.content {
	display:flex;
	flex-direction:column;
}

.content > div,img,h1 { 
	width:100%; 
	margin:6px 0px;
}
a { 
	text-decoration:none;
	color:#888;
	font-weight:bold;
}
.header {
	display:flex;
	justify-content:space-between;
	padding:0px 2px;
	box-sizing:border-box;
}

.header > a { 
	text-decoration:none;
	color:#888;
	font-weight:bold;
}

.main {
	text-align:justify;
}

.footer {
	padding:8px 0px;
	display:flex;
	justify-content:space-between;
	font-size:1.3em;
	margin-top:auto;
}
.footer > span { cursor:pointer; }

.legal {
	padding:16px 0px;
	font-size:.8em;
	text-align:center;
	justify-self:flex-end;
	
}

img { pointer-events:none; }

@media screen and (max-width:480px) {
	.header { font-size: .9em; }
}

@media screen and (max-width:300px) {
	.header { font-size: .7em; }
}