:root{
	--bg: #0b2a2a;
	--panel: #0f3434;
	--ink: #e9f2f1;
	--muted: #b9c9c7;
	--rule: rgba(233,242,241,0.14);
	--accent: #7fd1c7;
	--link: #9fe6dc;
}

body{
	background: var(--bg);
	margin: 0;
	padding: 28px 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: 17px;
	color: var(--ink);
	line-height: 1.55;
}

#main{
	max-width: 760px;
	width: calc(100%-48px);
	margin: 0 auto;
	background: var(--panel);
	border: 1px solid var(--rule);
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	padding: 26px 22px;
}

img{
	width: 100%;
	border: 1px solid var(--rule);
}

h1,h2,h3{
	font-family: "Times New Roman", Times, serif;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0.9em 0 0.35em;
}

h1{
	margin-top:0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 2.5em;
}

.subtitle{
	color: var(--muted);
	margin-top: 0.35em;
}

hr{
	border: 0;
	border-top: 1px solid var(--rule);
	margin: 1.4em 0;
}

a{
	color: var(--link);
	text-decoration: none;
	border-bottom: 1px solid rgba(159,230,220,0.35);
}
a:hover{
	border-bottom-color: rgba(159,230,220,0.85);
}

#navigation{
	width:100%;
	margin: 24px 0 0 0;
	border: 1px solid var(--rule);
	background-color: var(--accent);	
	text-align:center;
	font-size:14px;
	padding:3px 0px;
}
#navigation a{
	color: var(--bg);
	padding: 0 6px;
}
#navigation .active{
	color: var(--bg);
	font-weight:600;
}

#navigation .sep{
	padding: 0 6px;
}

.smallprint{
	color: var(--muted);
	font-size: 0.9em;
}

.notice{
	border-left: 4px solid var(--accent);
	padding: 10px 12px;
	background: rgba(127,209,199,0.08);
	margin: 1em 0;
}















