html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Calibri", "Arial";
  font-size: 12px;
  color: #404040;
}

#main {
  position: relative;
  margin: 0 auto;
}

#toolbar {
  top: 5px;
  right: 5px;
  z-index: 3;
  /* @alternate */
  z-index: var(--z-index-default);
}

#toolbar > .Toggle {
  display: none;
}

header {
  position: relative;
  right: 0;
  left: 0;
  height: 80px;
}

nav.Menu {
  left: 0;
  right: 0;
  z-index: 1;
  /* @alternate */
  z-index: var(--z-index-default);
}

main {
  position: relative;
  left: 0;
  right: 0;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 400px;
  overflow: auto;
}

header > .Title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  color: #596F8E;
}

header > .Subtitle {
  position: absolute;
  top: 40px;
  left: 20px;
  font-size: 12px;
  color: #596F8E;
}

footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  /* @alternate */
  z-index: var(--z-index-default);
}

a,
a:hover {
  color: #404040;
  text-decoration: none;
}
