:root {
	--bg-color:#FFF;
	--body-color:#555;
	--location-color:#555;
	--section-color:#444;
	--position-color:#383;
	--date-color:#888;
	--border-top-color:#ABC;
	--link-color:#00F;
	--link-color-visited:#551A8B;
}
@media(prefers-color-scheme:dark) {
	:root {
		--bg-color:#000;
		--body-color:#EEE;
		--location-color:#999;
		--section-color:#EEE;
		--position-color:#383;
		--date-color:#888;
		--border-top-color:#ABC;
		--link-color-visited:#6495ED;
		--link-color:#483D8B;
	}
}
body {
	background-color:var(--bg-color);
	font-family:Helvetica, Arial, sans-serif;
	padding-left:15%;
	padding-right:15%;
	color:var(--body-color);
	margin:0;
	border-top-style:solid;
	border-top-width:15px;
	border-top-color:var(--border-top-color);
}
hgroup,nav {
	margin-top:20px;
	text-align:center;
}
hgroup h1 {
	font-size:35px;
}
hgroup h2 {
	font-size:20px;
}
section {
	color:var(--section-color);
/*	text-align:justify;*/
	font-size:16px;
}
section h2 {
	font-size:24px;
	border-bottom-style:dashed;
	border-bottom-width:2px;
	padding-bottom:5px;
	margin-bottom:5px;
}
.location,.entity {
	font-size:16px;
	text-align:left;
}
.entity {
	font-weight:bold;
}
section section {
	padding-left:1%;
	padding-right:1%;
	border-bottom-style:dashed;
	border-bottom-width:1px;
	margin-bottom:15px;
}
section section:nth-last-child(1)
{
	border-bottom-style:none;
}
section h3 {
	margin-top:0px;
	padding-top:0px;
	margin-bottom:0px;
	padding-bottom:0px;
}
.location {
	font-style:italic;
	font-weight:normal;
	color:var(--location-color);
}
.location:before {
	content:"\a0\b7\a0";
}
.position {
	color:var(--position-color);
	font-weight:bold;
	font-style:italic;
}
.code {
	font-family:menlo, courier, monospace;
}
li {
	list-style-type:square;
	padding-top:8px;
}
li li {
	list-style-type:circle;
	font-size:14px;
	padding-top:0px;
}
ul {
	margin-top:0px;
	padding-top:0px;
}
.date {
	float:right;
	color:var(--date-color);
	font-weight:normal;
	font-size:16px;
}
dt {
	font-weight:bold;
}

.binary {
	font-family:"menlo, consolas, monospace"
}

/* http://edward.oconnor.cx/2007/08/tex-poshlet */
.latex sub, .latex sup {
	text-transform:uppercase;
}
.latex sub {
	vertical-align:-0.5ex;
	margin-left:-0.1667em;
	margin-right:-0.125em;
}
.latex, .latex sub {
	font-size:1em;
}
.latex sup {
	font-size:0.85em;
	vertical-align:0.15em;
	margin-left:-0.36em;
	margin-right:-0.15em;
}

.csharp {
	text-transform:uppercase;
	font-size:1em;
}
.csharp sup {
	font-size:0.7em;
	vertical-align:0.35em;
	margin-left:-0.05em;
}

.cpp {
	text-transform:uppercase;
	font-size:1em;
}
.cpp sup {
	font-size:0.7em;
	vertical-align:0.22em;
	margin-left:-0.05em;
	letter-spacing:-0.05em;
}
a:link {
	color:var(--link-color);
}
a:visited {
	color:var(--link-color-visited);
}
