/***************************************
* Layout
***************************************/

html {
  background-color: #fff;
  background-image: url("background.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #000;
  font-family: Verdana, Geneva, sans-serif;
}

body {
  margin: 0;
}

#container {
  margin: 10px auto;
  border-radius: 10px;
  padding: 10px;
  width: 1100px;
  background-color: rgba(224, 224, 232, 0.75);
}

#header {
  margin: 0 0 10px 0;
  border-radius: 5px;
  width: 1100px;
  height: 130px;
  background-image: url("header.png");
}

#menu {
  float: left;
  margin: 0 0 10px 0;
  width: 220px;
  background-color: transparent;
  color: #000;
  font-size: 13px;
}

#content {
  float: left;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px;
  width: 860px;
  background-color: #fff;
  color: #000;
  font-size: 13px;
  line-height: 19px;
}

#footer {
  clear: both;
  width: 1100px;
  background-color: transparent;
  color: #808080;
  text-align: right;
  font-size: 11px;
}

#menu a:link,
#menu a:visited
{
  color: #03699c;
  text-decoration: none;
}

#menu ul {
  margin: 0;
  padding: 0;
}

#menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu ul li.caption {
  margin: 2px 0;
  font-weight: bold;
}

#menu ul li.active {
  margin: 0 -5px 0 -3px; /* margin-right -5px damit der Hintergrund hinter die obere linke Ecke von #content ragt, falls ein li.active ganz oben in #menu steht. */
  border-radius: 3px 0 0 3px;
  padding: 3px 5px 3px 3px;
  background-color: #fff;
}

#footer a:link,
#footer a:visited
{
  color: inherit;
  text-decoration: none;
}

/***************************************
* Inhalt
***************************************/

#content a:link,
#content a:visited
{
  color: #03699c;
  text-decoration: underline;
}

#content a.emphasized:link,
#content a.emphasized:visited
{
  font-weight: bold;
}

#content p.introduction {
  text-align: center;
}

#content p.introduction:first-letter {
  font-size: 1.2em;
  font-weight: bold;
}

#content h1 {
  font-size: 1.6em;
  font-weight: bold;
}

#content h2 {
  font-size: 1.4em;
  font-weight: bold;
}

#content h3 {
  font-size: 1.2em;
  font-weight: bold;
}

#content h4 {
  font-size: 1em;
  font-weight: bold;
}

#content table {
  margin: 1em auto;
  width: 90%;
  border-spacing: 2px;
}

#content th {
  padding: 2px;
  background-color: #e8e8ee; /* entspricht rgba(224, 224, 232, 0.75) auf #fff */
  color: #000;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}

#content td {
  padding: 2px;
  text-align: left;
  vertical-align: top;
}

#content pre {
  margin: 1em auto;
  padding: 2px;
  width: 90%;
  background-color: #e8e8ee; /* entspricht rgba(224, 224, 232, 0.75) auf #fff */
  color: #000;
  overflow: scroll;
}

#content video {
  display: block;
  margin: 1em auto;
}

#content input,
#content textarea
{
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

#content input[type=text],
#content input[type=password],
#content textarea
{
  border: 1px solid #999;
  border-radius: 2px;
  padding: 2px;
  background-color: inherit;
  color: inherit;
}

#content input[type=button],
#content input[type=submit],
#content input[type=reset]
{
  border: 1px solid #999;
  border-radius: 2px;
  padding: 2px 6px;
  background-color: #e8e8ee;
  background-image: linear-gradient(to bottom, #fff, #e8e8ee);
  color: #000;
}

#content input[type=button]:active:hover,
#content input[type=submit]:active:hover,
#content input[type=reset]:active:hover
{
  padding: 3px 5px 1px 7px;
  background-image: linear-gradient(to top, #fff, #e8e8ee);
  vertical-align: -1px;
}

#content input:focus,
#content textarea:focus
{
  outline: none;
  /* box-shadow: 0 0 2px #666; */
}

/* Inhaltsverzeichnis */

#content > ul.tableofcontents {
  margin: 1em 0;
  padding: 0;
}

#content > ul.tableofcontents ul {
  margin: 0;
  padding: 0 0 0 1em;
}

#content > ul.tableofcontents li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Abbildungen */

#content > div.image {
  margin: 1em 0;
}

#content > div.image img {
  float: left;
  margin: 0 5px 5px 0;
  max-width: 430px;
  max-height: 430px;
}

#content > div.image > div.caption {
  font-weight: bold;
}

#content > div.image > div.clear {
  clear: both;
}

/* Abgesetzte Abbildungen */

#content > div.figures {
  display: table;
  margin: 1em 0;
  width: 860px;
}

#content > div.figures > div {
  display: table-row;
}

#content > div.figures > div > div {
  display: table-cell;
  text-align: center;
}

#content > div.figures > div:nth-child(1) > div {
  vertical-align: bottom;
}

#content > div.figures > div:nth-child(2) > div {
  vertical-align: top;
}

#content > div.one.figures > div > div {
  width: 860px;
}

#content > div.two.figures > div > div {
  width: 430px;
}

#content > div.three.figures > div > div {
  width: 287px;
}

#content > div.three.figures > div > div:first-child {
  width: 286px;
}

#content > div.figures img {
  max-height: 200px;
}

#content > div.one.figures img {
  max-width: 850px;
}

#content > div.two.figures img {
  max-width: 420px;
}

#content > div.three.figures img {
  max-width: 276px;
}
