address, article,aside,body, details,figure,footer,header,hr, section, video {
  display: block;
}

header div.website-header {
  margin: 0 0 0 13em;
  border-radius: 9px;
  border-bottom: thick solid #ccc;
  border-right: medium solid #ccc;
  padding: 5px;
  height: 11em;
  text-align: center;
  font-weight: bold;
  background-color: green;
}

header.website	{ border-radius: 9px; height: 12.2em; color: white; }
#logo		{ float: left; margin-right: 1em; width: 12em; height: 12em; }
nav, main	{ display: table-cell; }
nav		{ padding-left: 5px; width: 12em; }

/*
	position: sticky is working in Firefox on Mac and Fedora (+ IceCat on Fedora)
	not working in Safari, Chrome, Opera on Mac
*/
#sticky		{ position: -webkit-sticky; position: sticky; top: 10px; }
#motto		{ line-height: 1.2em; }
a#ami		{ color: white; }
a#ami:hover	{ color: #0f0; }
a#ami:active	{ color: #0f0; }

body {
  background-color: white;
  margin: 2em;
  font-family: sans-serif;
  font-weight: 400;
}

/*
	Is there a simpler way to align h1 (L, height) with #logo?
	Any tweak in the font sizes messes it up.
*/
h1 {
  margin: 0;
  padding: 25px 5px 5px;
  text-align: center;
  font-size: 2.5em;
  font-variant: small-caps;
}

h1, nav h2	{ font-weight: bold; }

nav h2 {
  border-radius: 9px;
  border-bottom: thick solid #ccc;
  border-right: medium solid #ccc;
  padding: .3em .2em .2em .5em;
  background-color: green;
  color: white;
  font-size: 1.5em;
}

nav a		{ text-decoration: none; }
h2		{ font-size: 1.1em; font-weight: 400; }
h3		{ font-size: 1.1em; font-weight: 500; }
p		{ margin: .7em 0; }

a:link, a:visited				{ color: green; }
a:hover, a:hover h2, a:active, a:active h2	{ color: #0f0; }

/*
	Why different margin-left values to L-align <main> and <aside>?
	Perhaps because main has display: table-cell, aside has display: block; ?
*/
main		{ margin-left: 20em; padding: 0 1em 0 2em; text-align: justify; }
cite, em	{ font-style: italic; font-weight: 400; }
cite.article	{ font-style: normal; }
cite.article::before, cite.article::after {
  content: '"';
}
strong		{ color: green; font-weight: 500; }
i		{ font-style: italic; }
kbd		{ padding-left: .5em; }

.new {
  position: relative;
  top: -.8em;
  left: -1em;
  padding-right: .3em;
  background-color: white;
  color: #0cc;
  font-size: 1.4em;
  font-weight: bold;
}

/* .sunny class not yet used; might be a good color to include  */
.sunny		{ background-color: #ffd700; }
.items p	{ margin: .5em 0; }
dd > details { padding: 1ex 2ex; }
details		{ margin-top: .5em; border: thin solid green; padding: .4em; }

details > summary {
  display: block;
  padding-bottom: .3em;
  color: black;
  font-weight: 300;
}

details ul	{ list-style-type: circle; }
#sov		{ padding: 1em; }
dt		{ margin: 1em 0 0; color: green; font-weight: bold; }
li		{ padding: .3em 0; }

/* ******* check ******* */
figure		{ margin: 0 auto; width: 100%; xtext-align: center; }
figcaption	{ padding-top: .2em; }
aside		{ margin-left: 14em; padding-top: 1em; }
address		{ padding-top: 0; text-align: center; }
