<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.autoScroll {
    overflow: auto;
    height: 200px;
    border: 1px solid black;
    padding: 1em;
}

.cat-view .cat-list {
    list-style-type: none;
}

.cat-view div.parent {
    padding-top: 1em;
    margin-bottom: 10px;
}

.cat-view a.parent {
    font-size: 24px;
}

.cat-view .child {
    float: left;
}

.cat-view .child_one {
    color: #404047;
}

.cat-view .child_two {
    color: grey;
}

.cat-view .cat-nav {
    border: 1px solid grey;
    overflow: hidden;
}

.cat-view .cat-nav:hover {
    background-color: lightgrey;
}

.cat-view .cat-nav:hover a {
    color: black;
}

.cat-view .cat-nav a {
    padding: .5em;
    color: #44484f;
    display: inline-block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
}

.cat-view a span {
    position: absolute;
    top: -25vh;
}

.cat-view a.parent:hover {
    text-decoration: underline;
}

/*display vertically and alpabetically*/
.row.columns {
    columns: 3;
}
.columns &gt; [class*="col-"] {
    break-inside: avoid;
    width: 100%;
    float: none;
}

.cat-view div.parent .divider.to-right {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, gray, transparent);
    position: relative;
    right: 15px;
}

.cat-view div.parent .divider.from-center {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, gray, transparent);
    position: relative;
    right: 15px;
}

@media (max-width: 767px) {
  .row.columns {
    columns: 2;
  }
}

@media (max-width: 479px) {
  .row.columns {
    columns: 1;
  }
}
</pre></body></html>