<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#main .sticky-block {
  position: sticky;
  z-index: 5;
  top: 32px;
}

#main.fixed_y .sticky-block {
  top: 86px;
}

#main .sticky-block--top-0 {
  top: 0px;
}

#main .sticky-block--show-N {
  position: static;
}

@media (min-width: 992px) {
  #main .sticky-from-992 {
    position: sticky;
    z-index: 5;
    top: 32px;
  }
  #main.fixed_y .sticky-from-992 {
    top: 86px;
  }
}

.sticky {
  --top: 0px;
  position: sticky;
  top: var(--top);
}</pre></body></html>