@CHARSET "ISO-8859-1";

body, html {
    height:100%;
}
body {
	background: #ccc;
	font-family: Helvetica, Arial;
	margin: 0;
	padding: 0;
}

#h {
	background: #036;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	cursor: default;

	box-shadow: 0 1px 1px #999;
	/* https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
#hh {
	padding: 0 20px;
}

h1 {
	color: #fff;
	font-weight: normal;
	margin: 0;
	padding: 0 0.5em;
}
h1 a {
	color: #fff;
	text-decoration: none;
}
h1.hright {
}
#h .mute {
	color: #9d7;
}
#h .mute:hover {
	color: #fff;
}

a {
	text-decoration: underline;
	color: #036;
}
ul a {
	text-decoration: none;
}

#c {
	width: 100%;
	min-height: 100%;
	padding: 0;

	display: flex;
	justify-content: center;
}
#cc {
	flex: 1;
	max-width: 800px;

	background: #fff;
	min-height: 100%;
	box-sizing: border-box;

	padding: 50px;
	padding-top: 100px;
}

h2 {
	color: #036;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;

	font-weight: normal;
	font-size: 2em;
}
#c .mute {
	color: #ccc;
}
#c .mute:hover {
	color: #036;
}

#p {
	float: right;
	margin: 0 0 1em 1em;
	width: 150px;
}

ul, p {
	line-height: 1.5em;
}

p {
	margin: 1.5em 0;
}

.emc {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

footer {
	border-top: 1px solid #ccc;
	margin-top: 3em;
	padding-top: 0.5em;
}

@media only screen and (max-device-width: 480px) {
	#cc {
		flex: none;
		width: 95%;
		padding-left: 1em;
		padding-right: 1em;
		padding-top: 75px;
	}
	#c h2 .mute {
		display: block;
	}
	#p {
		width: 75px;
		margin: 0 0 .5em .5em;
	}
}