
/* 
 * Page layout 
 */

html, body {
  margin: 0px;
  padding: 0px;
  border: none;
}

div#left, div#right {
  position: absolute;
  top: 0;
  min-height: 550px;
}

div#left {
  /* positioning and size */
  left: 0;
  width: 200px;
  bottom: 0px;

  /* red bar */
  border-right-style: solid;
  border-right-width: 10px;
  border-right-color: #800000;
}

div#right {
  /* positioning and size */
  left: 200px;
  right: 0px;
  /* bottom: 0px; */
  min-width: 400px;
  padding: 30px;

  /* red bar */
  border-left-style: solid;
  border-left-width: 10px;
  border-left-color: #800000;
}

iframe#menue {
  width: 100%;
  height: 100%;
}

/* a column of running text */
div.text {
  min-width: 400px;
  max-width: 600px;
  margin: 0 auto;
}

/*
 * global formats
 */

/* font formatting */
* {
  font-family: sans-serif;
  font-weight: bold;
}

p {
  text-align: justify;
}

/* colors */
body {
  color: #606060;
  background-color: #FFFFC0;
  border-color: #800000;
}

h1 {
  color: #800000;
}

a:link {
  color: #606060;
}

a:visited {
  color: #808080;
}

.show, .show:visited {
  color: #800000;
}

/* borders */
* {
  border-style: none;
}

frame, img {
  border: 0;
}

body {
  padding: 30px;
}

h1 {
  border-bottom: solid 2px #800000;
}

h2, h3, h4 {
  margin-top: 1em;
}

/*
 * element formats
 */
table {
  empty-cells: show;
}

/* tables */
table {
  border-spacing: 8px;
  width: 100%;
}

th, td {
  padding: 4px;
}

td {
  background-color: #FFFFE0;
  vertical-align: top;
}

th {
  color: #FFFFC0;
  background-color: #800000;
}

table.layout * {
  margin: 0px;
}

table.layout td {
  background-color: #FFFFC0;
  text-align: center;
  vertical-align: middle;
}

table.layout td.caption {
  text-align: left;
  vertical-align: bottom;
}

table.layout td.caption_top {
  text-align: left;
  vertical-align: top;
  font-size: larger;
}

/* images */
img {
  margin: 16px;
}

/* hr */
hr {
  height: 2px;
  background-color: #800000;
}

/* lists */
ul {
  list-style-image: url(dot.gif);
}

li, dt, dd {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* special notices */

div.special {
  text-align: center;
  margin: 30px;
}

div.special, span.special {
  color: #800000;
  font-size: 110%;
  font-weight: bold;
}

/* mourning notices */

div.mourning {
  text-align: center;
  color: #000000;
  border-style: solid;
  border-width: 6px;
  border-color: #000000;
  padding: 12px;
}

div.mourning p, div.mourning div {
  text-align: center;
}

div.mourning a:link {
  color: #000000;
}

div.mourning a:visited {
  color: #404040;
}

/*
 * special functionality
 */

/* show initially hidden text on click */

.show {
  /* center in parent */
  display: table;
  margin: 0 auto;

  /* no underlines */
  text-decoration: initial;
}

.hidden {
  display: none;
}

.show:focus + .hidden, .hidden:hover {
  display: block;
}

/* eof */
