body {
	font-family: Arial;
	font-size: 16px;
	max-width: 800px;
	line-height: 1.4em;
  margin-right: auto;
  margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: var(--light);
	color: var(--dark);
}

:root {
  background-color: var(--light);
}

::selection {
  background-color: var(--light);
  color: var(--dark);
}

#container {
	background-color: white;
	padding: 20px;
	overflow: auto;
}

#content {
	padding: 0 20px;
}

img {
	max-width: 100%;
}

abbr {
	cursor: help;
	text-decoration: dotted underline;
}

blockquote {
	line-height: 1.4em;
	font-size: .88em;
  border-left: 1px solid var(--light);
	padding-left: 10px;
}
.citation {
	padding-left: 22px;
	text-indent: -22px;
	font-size: .75em;
}

hr {
	border: solid var(--light);
	border-width: 1px 0 0 0;
	border-style: outset;
}

a {
  color: var(--medium);
  text-decoration: underline dotted;
}
a:hover {
  color: var(--light);
}

h1 {
	line-height: 1.4em;
}

.right {
	float: right;
	max-width: 50%;
	margin-left: 1em;
}
.left {
	float: left;
	max-width: 50%;
	margin-right: 1em;
}
.right-small {
	float: right;
	max-width: 25%;
	margin-left: 1em;
}
.left-small {
	float: left;
	max-width: 25%;
	margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.treeview ul {
	padding: 0;
	margin: 0;
}
.treeview li {
	padding: 0;
	margin: 0;
	line-height: 1.4em;
	list-style-type: none;
	list-style-image: none;
}
.treeview li li {
	background: url("./img/treeview.png") no-repeat 0 -2980px;
	padding-left: 20px;
	text-indent: 0.3em;
}
.treeview li li:last-child {
	background-position: 0 -5970px;
}
.treeview img {
	width: 16px;
	vertical-align: top;
	margin-right: 4px;
}

.timeline {
	line-height: 1.4em; 
	padding: 5px;
	margin: 10px;
	font-size: .75em;
	max-width: 300px;
}
.timeline th {
	font-weight: normal;
	text-align: right;
	padding-right: 4px;
}

.rss {
	padding-top: 5px;
	width: 12px;
	filter: hue-rotate(calc((var(--hue) + var(--rss-hue-offset)) * 1deg)) saturate(50%) brightness(110%);
	transition: none;
}
.rss:hover {
	filter: hue-rotate(0deg) saturate(100%);
}

.greek {
	font-family: Times New Roman, "Times New Roman", serif;
	font-size: 1.1em;
}

.post {
  border-left: 1px var(--light) solid;
  padding: 0 5px;
  margin: 10px 0;
}

#header ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#header li {
	display: inline-block;
	margin-right: 10px;
}
#header a {
	text-decoration: none;
}

@media only screen and (min-width: 600px) {
	.mobile-show {
		display: none !important;
  }
}
@media only screen and (max-width: 600px) {
	.mobile-hide {
		display: none !important;
  }
	body {
		margin: 5px;
		font-size: .88em;
	}
	.rss {
	padding-top: 4px;
	width: 11px;
  }
  .treeview img {
	width: 18px;
	}
  #content {
	 padding: 0 10px;
  }
}