html {
  background: #ffffff;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: Verdana, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

a {
  color: #003399;
}

a:hover {
  color: #cc0000;
}

code,
pre {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.page {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
}

.top-strip {
  background: #000000;
  color: #ffffff;
  font-size: 11px;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 8px;
}

.top-strip a,
.footer a {
  color: #ffffff;
  text-decoration: none;
}

.masthead {
  padding: 12px 12px 10px;
  background: #1b8fe5;
  color: #ffffff;
}

.masthead-title {
  font-size: 34px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: -1px;
}

.masthead-subtitle {
  margin-top: 6px;
  font-size: 12px;
}

.tabs {
  padding: 6px 8px;
  background: #1b8fe5;
  border-top: 1px solid #66b5f2;
  border-bottom: 1px solid #0b5c96;
}

.tabs a {
  margin-right: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
}

.tabs a.is-active,
.tabs a:hover {
  text-decoration: underline;
}

.section-label {
  padding: 4px 8px;
  background: #f1f1f1;
  border-bottom: 1px solid #999999;
  color: #444444;
  font-size: 11px;
}

.content-layout {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.sidebar,
.main-content {
  display: table-cell;
  vertical-align: top;
}

.sidebar {
  width: 190px;
  background: #efefef;
  border-right: 1px solid #999999;
}

.main-content {
  padding: 0;
}

.panel {
  border-bottom: 1px solid #999999;
  padding-bottom: 8px;
}

.panel-title,
.section-title {
  background: #d0d0d0;
  color: #003399;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 6px;
}

.nav-list,
.plain-links,
.mini-panel ul,
.link-list {
  margin: 8px 0 0;
  padding-left: 20px;
}

.nav-list li,
.plain-links li,
.mini-panel li,
.link-list li {
  margin-bottom: 6px;
}

.small-copy,
.section-body p,
.feature-text p {
  margin: 8px 6px 0;
}

.feature-box {
  display: table;
  width: 100%;
  border-bottom: 1px solid #999999;
}

.feature-text,
.feature-side {
  display: table-cell;
  vertical-align: top;
  padding: 12px;
}

.feature-text {
  width: 68%;
}

.feature-text h1 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: normal;
}

.feature-side {
  width: 32%;
  border-left: 1px solid #cccccc;
  background: #fafafa;
}

.mini-panel-title,
.item-title {
  font-weight: bold;
  color: #003399;
  margin-bottom: 8px;
}

.content-section {
  border-bottom: 1px solid #999999;
}

.section-body {
  padding: 10px 12px 12px;
}

.simple-item,
.reference-item {
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cfcfcf;
}

.simple-item:last-child,
.reference-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.simple-item h2,
.reference-item h2,
.section-body h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: bold;
  color: #003399;
}

.meta-line {
  color: #555555;
  font-size: 12px;
  margin-top: 4px;
}

.excerpt-box {
  margin-top: 10px;
  padding: 8px;
  background: #fafafa;
  border: 1px solid #cccccc;
  white-space: normal;
}

.downloads-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 12px;
}

.downloads-table th,
.downloads-table td {
  border: 1px solid #999999;
  padding: 6px 8px;
  text-align: left;
  vertical-align: top;
}

.downloads-table th {
  background: #e4e4e4;
  color: #003399;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.image-card {
  border: 1px solid #999999;
  background: #ffffff;
  padding: 6px;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #cccccc;
  background: #f5f5f5;
}

.image-caption {
  margin-top: 6px;
  font-size: 11px;
  color: #555555;
  word-break: break-word;
}

.sample-text {
  color: #cc0000;
  font-weight: bold;
}

.note-text {
  color: #555555;
  font-size: 12px;
}

.footer {
  padding: 8px;
  background: #1b8fe5;
  color: #ffffff;
  font-size: 12px;
}

.footer div + div {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .top-strip-inner {
    display: block;
  }

  .top-links {
    display: block;
    margin-top: 4px;
  }

  .content-layout,
  .sidebar,
  .main-content,
  .feature-box,
  .feature-text,
  .feature-side {
    display: block;
    width: 100%;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid #999999;
  }

  .feature-side {
    border-left: 0;
    border-top: 1px solid #cccccc;
  }

  .tabs a {
    display: inline-block;
    margin-bottom: 6px;
  }

  .downloads-table {
    display: block;
    overflow-x: auto;
  }
}

/* imported-jimdo-flow */
.imported-flow {
  font-size: 13px;
  line-height: 1.45;
}

.imported-flow > *:first-child {
  margin-top: 0;
}

.imported-block {
  margin: 0 0 18px;
}

.imported-block h1,
.imported-block h2,
.imported-block h3,
.imported-block h4 {
  margin: 0 0 10px;
  color: #003399;
}

.imported-text p,
.imported-html p,
.imported-download p,
.imported-textimage-copy p,
.imported-grid-column p {
  margin: 0 0 10px;
}

.imported-html a,
.imported-text a,
.imported-download a,
.imported-grid a,
.imported-textimage a,
.imported-figure a {
  color: #003399;
}

.imported-rule {
  border: 0;
  border-top: 1px solid #999999;
  margin: 18px 0;
}

.imported-spacer {
  height: 22px;
}

.imported-figure,
.imported-gallery-item {
  margin: 0 0 14px;
}

.imported-figure img,
.imported-gallery-item img,
.imported-textimage-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #999999;
  background: #ffffff;
}

.imported-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.imported-gallery-item {
  margin: 0;
}

.imported-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 18px;
}

.imported-grid-column {
  min-width: 0;
}

.imported-textimage {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0 0 18px;
}

.imported-textimage-copy > *:first-child {
  margin-top: 0;
}

.imported-download {
  border: 1px solid #999999;
  background: #f7f7f7;
  padding: 10px 12px;
}

.imported-download-title {
  font-weight: bold;
  color: #003399;
  margin-bottom: 6px;
}

.imported-download-meta {
  font-size: 12px;
  color: #555555;
  margin-bottom: 8px;
}

.imported-download-link,
.imported-cta-link {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #666666;
  background: #e9e9e9;
  color: #003399;
  text-decoration: none;
  font-weight: bold;
}

.imported-download-link:hover,
.imported-cta-link:hover {
  background: #dcdcdc;
  color: #cc0000;
}

.imported-table-wrap {
  overflow-x: auto;
}

.imported-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 12px;
}

.imported-table-wrap th,
.imported-table-wrap td {
  border: 1px solid #999999;
  padding: 6px 8px;
  text-align: left;
  vertical-align: top;
}

.imported-table-wrap th {
  background: #e4e4e4;
  color: #003399;
}

@media (max-width: 720px) {
  .imported-grid,
  .imported-textimage {
    grid-template-columns: 1fr;
  }
}
