* { padding: 0; margin: 0; font-weight: normal; }

body {
  font-family: MDSystemVar, serif;
  font-variation-settings: "wght" 300;
  height: 50vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 30% auto;
  grid-template-rows: auto;
  grid-template-areas: "sidebar content";
}

.nav-sidebar {
  background: whitesmoke;
  grid-area: sidebar;
  position: relative;
  height: 100vh;
  overflow-y: scroll;
  max-width: 400px;
}

.manual-content-container {
  grid-area: content;
  position: relative;
  height: 100vh;
  overflow-y: scroll;
}

@media (max-width: 700px) {
  body {
    height: auto;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas: "sidebar" "content";
    overflow: auto;
  }

  .nav-sidebar {
    height: auto;
    max-width: 100%;
  }

  .manual-content-container {
    height: auto;
  }
}

body em {
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "slnt" -10, "wght" 300;
}

body strong {
  font-weight: normal;
  font-variation-settings: "wght" 800;
  color: #444;
}

body strong em {
  font-weight: normal;
  font-variation-settings: "wght" 800, "slnt" -5;
}

strong.plugin-name {
  font-variation-settings: "wght" 600, "slnt" 0, "wdth" 70;
  color: inherit;
}

.logo-block {
  height: 150px;
  position: relative;
}

.manual-home-link {
  position: absolute;
  top: 11px;
  left: 8px;
  width: 124px;
  height: 124px;
  display: block;
  box-shadow: 0 0 75px rgba(0,0,0,0.2);
}

.top-link {
  color: white;
  position: absolute;
  top: 15px;
  right: 25px;
}

.manual-home-link img {
  max-width: 100%;
}

.logo-block a.ghz {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 120px;
}

.manual {
  padding: 25px;
  /* margin: auto auto; */
}

.table-of-contents {
  padding: 10px 10px;
}

.table-of-contents .version {
  color: #555;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 4px 0px;
  margin-bottom: 20px;
  font-variation-settings: "wght" 300, "wdth" 50, "slnt" -10;
}

.table-of-contents ul {
  list-style: none;
  padding: 0 0 0 7px;
  line-height: 1.3rem;
}

.table-of-contents li {
  display: block;
  /*border-left: 1px solid #ddd;*/
}

.table-of-contents li.top {
  border-left: none;
  margin-bottom: 4px;
}

.table-of-contents li.top > a {
  /* font-family: ObviouslyNarrowWeb, monospace; */
  font-size: 18px;
  font-variation-settings: "wght" 700, "wdth" 50;
}

.table-of-contents a {
  display: block;
  padding-left: 7px;
  /* color: hsla(200, 60%, 40%, 1); */
  color: #555;
  font-style: normal;
  text-decoration: none;
}

.table-of-contents a:hover {
  text-decoration: underline;
}

.table-of-contents a.s {
  padding: 4px 0;
}

.table-of-contents .controls-section-container {
  margin-bottom: 10px;
}

.table-of-contents .controls-section {
  padding-top: 5px;
  padding-bottom: 3px;
  font-variation-settings: "wdth" 50, "wght" 400, "slnt" -10;
}

.table-of-contents a.active {
  color: #111;
  text-decoration: underline;
  border-right: 4px solid #aaa;
}

.table-of-contents .clumplink-container {
  margin-bottom: 6px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.table-of-contents .clumplink {
  padding-top: 4px;
  padding-bottom: 2px;
  display: block;
  font-variation-settings: "wdth" 50, "wght" 650, "slnt" 0;
  /*border-bottom: 1px solid #ddd;*/
  /* line-height: 1.1rem; */
}

.table-of-contents .parameterlink {
  display: block;
  text-indent: -8px;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  color: #555;
}

.table-of-contents .parameterlink strong {
  font-variation-settings: "wdth" 50, "wght" 450, "slnt" -5;
}

.table-of-contents .parameterlink:hover {
  text-decoration: none;
}

.table-of-contents .parameterlink:hover strong {
  text-decoration: underline;
}

.table-of-contents .parameterlink.active {
  text-decoration: none;
}

.table-of-contents .parameterlink.active strong {
  text-decoration: underline;
}

.table-of-contents .parameterlink .dot {
  color: #aaa;
  text-decoration: none !important;
  /* display: inline-block; */
}

.table-of-contents .freeform-section {
  padding: 4px 0;
  font-variation-settings: "wdth" 50;
  margin-top: 0px;
}

.manual h1 {
  text-align: left;
  margin-bottom: 20px;
  font-variation-settings: "wdth" 0, "wght" 1000;
}

.manual h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  font-variation-settings: "wdth" 50, "wght" 400, "slnt" -100;
}

.manual h3 {
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 10px;
  font-variation-settings: "wght" 600, "wdth" 50;
}

.manual h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-variation-settings: "wdth" 75, "wght" 700;
}

.manual h5 {
  font-size: 18px;
  font-variation-settings: "slnt" -10, "wght" 700, "wdth" 70;
}

.manual h6 {
  font-weight: 900;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: CovikSansMonoWeb, monospace;
}

.manual .interface-wrapper {
  /* max-width: 600px; */
  margin-bottom: 20px;
  margin-top: 20px;
}

.manual .interface {
  margin-bottom: 10px;
  position: relative;
  /* overflow-x: scroll; */
  background: white;
}

.manual .interface-img-wrapper {
  position: relative;
  /* border: 2px solid #ddd; */
  /* border-radius: 4px; */
  /* overflow-x: scroll; */
  /* max-width: calc(100% - 2px); */
  transform: scale(0.5);
  transform-origin: 0 0;
  /* background: whitesmoke; */
}

.manual .interface-img {
  position: absolute;
  top: 0;
  left: 0;
}

.manual .interface-map {
  position: absolute;
  top: 0;
  left: 0;
}

.manual .interface-map-link {
  background: transparent;
  display: block;
  position: absolute;
  /* background: hsla(360, 50%, 50%, 0.5); */
}

.manual .interface-map-link:hover {
  background: rgba(0,0,0,0.1);
}

.manual .interface-map-tip {
  font-size: 0.8rem;
  text-align: left;
  padding: 10px;
  font-variation-settings: "slnt" -10, "wght" 300, "wdth" 50;
}

.manual .title-container {
  max-width: 600px;
}

.manual .title  h1 {
  font-size: 48px;
  font-variation-settings: "wght" 800, "wdth" 100, "slnt" 0;
  margin-bottom: 4px;
}

.manual .title  h3 {
  font-size: 22px;
  font-variation-settings: "wght" 800, "wdth" 80, "slnt" -3;
  margin-top: 0px;
}

.manual .title img {
  width: 100%;
  margin: auto auto;
}

.manual .section {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  max-width: 600px;
  margin-top: 40px;
}

#advanced-controls {
  margin-top: 100px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.manual .clump {
  border-left: 3px solid #eee;
  padding-left: 20px;
  margin-left: -20px;
}

.manual .clump-about {
  width: 95%;
  font-size: 0.9rem;
}

.manual .written-content {
  padding-top: 3px;
}

.manual table {
  line-height: 140%;
  margin-bottom: 20px;
  font-variation-settings: "wdth" 50, "wght" 300;
}

.manual table tr {
  border-bottom: 1px solid #ccc;
}

.manual table tr:last-child {
  border: none;
}

.manual table th {
  border-bottom: 2px solid #ddd;
  font-variation-settings: "slnt" -10;
}

.manual table td,
.manual table th {
  padding: 6px 6px;
}

.manual td:nth-child(1) {
  border-right: 1px solid #ddd;
  font-variation-settings: "wdth" 70, "wght" 700, "slnt" -5;
}

.manual td:nth-child(2) {
  min-width: 130px;
  font-variation-settings: "wdth" 70, "wght" 500, "slnt" 0;
}

.manual td.symbol {
  min-width: 50px;
}

.manual td p {
  margin-bottom: 0;
  line-height: 125%;
}

.manual td strong {
  font-variation-settings: "wdth" 70, "wght" 600;
  color: inherit;
}

.manual td em {
  font-variation-settings: "wdth" 70, "wght" 500, "slnt" -10;
  color: inherit;
}

.manual blockquote {
  font-size: 1.1rem;
  font-variation-settings: "slnt" -5, "wght" 300, "wdth" 80;
  color: #555;
  padding-left: 20px;
}

.manual cite {
  display: block;
  color: #222;
  text-align: right;
}

.manual .parameter {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: auto 120px;
  grid-template-rows: auto auto;
  grid-template-areas: "block data" "content data";
}

.manual .parameter .param-block {
  grid-area: block;
}

.manual .parameter .written-content {
  grid-area: content;
}

.manual .parameter .param-data {
  grid-area: data;
  position: relative;
}

.manual .parameter .param-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.manual .written-content ul {
  padding-left: 15px;
}

.manual .written-content li {
  list-style: disc;
  padding-bottom: 10px;
}

i.fa {
  opacity: 0.5;
  width: 15px;
  display: inline-block;
}

.manual .icon {
  position: absolute;
  top: 0;
  left: -9px;
  background: white;
  padding-bottom: 1px;
}

.manual .quicktip,
.manual .metering,
.manual .warning,
.manual .important {
  position: relative;
  padding: 0 50px 0 15px;
  margin-bottom: 20px;
  margin-left: 10px;
  border-left: 1px solid #eee;
  line-height: 1.5rem;
}

.manual .quicktip {
  border-color: #eee;
}

.manual .metering {
  border-color: paleturquoise;
}

.manual .warning,
.manual .important {
  border-color: pink;
}

.manual .value {
  border-bottom: 1px solid #ddd;
  font-variation-settings: "wdth" 50, "wght" 600, "slnt" -2;
}

.manual kbd {
  background: whitesmoke;
  border: 1px solid #ddd;
  font-family: CovikSansMonoWeb, sans-serif;
  color: #333;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0px 4px;
}

.manual .value .unit-symbol {
  color: #555;
  display: inline-block;
  padding-left: 2px;
  font-variation-settings: "wdth" 50;
}

.manual .param-name {
  font-variation-settings: "wght" 620, "slnt" 0;
}

.manual .edit {
  position: absolute;
  top: 0;
  right: -10px;
}

.manual .edit a {
  display: block;
}

.manual .edit .edit-button {
  display: none;
}

.manual .possible-values {
  min-height: 40px;
}

.manual .string-values,
.manual .number-values {
  list-style: none;
  padding: 0;
}

.manual .string-values li,
.manual .number-values li {
  list-style: none;
  padding-bottom: 0;
}

.manual .string-values {
  text-align: right;
}

.manual .string-value,
.manual .number-value .value {
  padding: 2px 4px;
  border-radius: 5px;
  background: #eee;
  display: inline-block;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-variation-settings: "wdth" 50;
}

.manual .string-value.default,
.manual .number-value .value.default {
  background: #ccc;
  border-color: #aaa;
}

.manual .number-value .qualifier {
  color: #555;
  font-size: 0.8rem;
  width: 50px;
  display: inline-block;
  text-align: right;
  font-variation-settings: "wdth" 50, "wght" 500, "slnt" -10;
}

.manual .number-value {
  font-variation-settings: "wdth" 50, "wght" 700, "slnt" 0;
}

.manual .number-value .unit-symbol {
  color: #333;
  margin-left: 2px;
  display: inline-block;
}

.footnotes-sep {
  margin-top: 150px;
}

.footnotes {
  font-size: 0.8rem;
}

.cue-symbol {
  font-family: "ghz-iconsregular", sans-serif;
  display: inline-block;
  padding: 0 2px;
  vertical-align: -2px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-top: 20px;
  margin-bottom: 60px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  /*border: 11px solid rgba(0,0,0,0.3);*/
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.manual figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

.manual figure img {
  max-width: 400px;
  width: 100%;
  margin: auto auto;
  display: block;
}

.manual figure .title {
  text-align: center;
  display: block;
  margin: 2px auto 5px auto;
  font-variation-settings: "wdth" 50, "wght" 600;
}

.manual figure .caption {
  text-align: center;
  padding: 10px;
  display: block;
  border-bottom: 1px solid #eee;
  max-width: 75%;
  margin: auto auto;
  font-size: 0.9rem;
  color: #555;
  font-variation-settings: "slnt" -10;
}

.preset-section {
  margin-top: 20px;
}

.presets-in-section {
  margin-left: 20px;
}

.preset-link {
  text-decoration: none;
}

.presets-in-section li {
  padding: 2px;
}

.preset-link strong {
  font-variation-settings: "wght" 600, "wdth" 70, "slnt" -5;
  color: royalblue;
  text-decoration: underline;
}

.preset-link span {
  color: #777;
  font-variation-settings: "slnt" -10, "wght" 300, "wdth" 50;
  display: inline-block;
  margin-left: 10px;
}

.preset-section-about {
  font-variation-settings: "slnt" -10;
  margin-bottom: 10px;
}

.audio-span audio {
  display: none;
}

.audio-span .sep-title.webaudio {
  font-size: 80%;
  padding: 0 6px;
  display: inline-block;
  border-radius: 4px;
  /*box-shadow: 0 0 2px rgba(0,0,0,0.2);*/
  position: relative;
  cursor: pointer;
  border: 1px solid #eee;
  background: white;
  color: rgb(66,101,167);
  margin: 0 1px;
  line-height: 161%;
  text-indent: 0;
}

.webaudio i.fa {
  margin-right: 6px;
  opacity: 0.9;
  width: 12px;
  text-align: center;
}

.name-list {
  margin-top: 20px;
  font-variation-settings: "slnt" -10;
}

.name-list span.name {
  color: #222;
  display: inline-block;
}

.name-list span.sep {
  color: #ccc;
  display: inline-block;
  margin: 0 4px;
}

.freeform-section {
  margin-top: 80px;
}

.freeform-section table td:nth-child(1) {
  min-width: 140px;
}

.manual p {
  padding-bottom: 20px;
  line-height: 140%;
}

.manual p:last-child {
  padding-bottom: 0px;
}

.manual a {
  color: royalblue;
}

.manual ul {
    padding-left: 20px;
    padding-right: 40px;
}

.manual li {
    line-height: 140%;
    padding-bottom: 2px;
}

.manual li:last-child {
    padding-bottom: 0px;
}



@media print {
  @page {
    size: 8.5in 11in;
    margin: 15mm 15mm 30mm 15mm;
  }

  body {
    height: auto;
    display: block;
  }

  .nav-sidebar {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
  }

  .manual-content-container {
    display: block;
    height: auto;
    page-break-before: always;
  }

  .manual-home-link {
    display: block;
    width: 124px;
    height: 124px;
    box-shadow: none;
  }

  .interface-preview, .interface-preview-page, .controls.section {
    page-break-before: always;
  }

  .manual .interface-img-wrapper {
    /* page-break-inside: avoid; */
  }

  .top-link, .anchor-link {
    display: none !important;
  }
}