.tiki-textblock {
    display: block;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: "Inconsolata", monospace;
    margin: 1.7rem 0;
    padding: .938rem;
    font-size: 1rem;
    overflow: auto;
}
/* Unresolved ((internal links)) */
.tiki-missing-link {
    border-bottom: 1px dashed #aaa;
    cursor: help;
}

/* Blocks for Tiki plugins this site does not implement */
.tiki-unknown-plugin {
    background-color: #fff8c4;
    padding: .5rem .75rem;
}

/* {TABS}: radio buttons and labels, no script */
.tiki-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.tiki-tabs > .tiki-tab-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.tiki-tabs > .tiki-tab-label {
    order: 1;
    padding: .5rem 1rem;
    margin: 0 .25rem -1px 0;
    border: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    background: #f5f5f5;
    cursor: pointer;
}
.tiki-tabs > .tiki-tab-panel {
    order: 2;
    display: none;
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
}
.tiki-tabs > .tiki-tab-input:focus-visible + .tiki-tab-label {
    outline: 2px solid #3085ee;
}
/* the Nth checked input shows the Nth panel */
.tiki-tabs > .tiki-tab-input:checked + .tiki-tab-label { background: #fff; border-bottom-color: #fff; }
.tiki-tabs > .tiki-tab-input:nth-of-type(1):checked ~ .tiki-tab-panel:nth-of-type(1),
.tiki-tabs > .tiki-tab-input:nth-of-type(2):checked ~ .tiki-tab-panel:nth-of-type(2),
.tiki-tabs > .tiki-tab-input:nth-of-type(3):checked ~ .tiki-tab-panel:nth-of-type(3),
.tiki-tabs > .tiki-tab-input:nth-of-type(4):checked ~ .tiki-tab-panel:nth-of-type(4),
.tiki-tabs > .tiki-tab-input:nth-of-type(5):checked ~ .tiki-tab-panel:nth-of-type(5),
.tiki-tabs > .tiki-tab-input:nth-of-type(6):checked ~ .tiki-tab-panel:nth-of-type(6),
.tiki-tabs > .tiki-tab-input:nth-of-type(7):checked ~ .tiki-tab-panel:nth-of-type(7),
.tiki-tabs > .tiki-tab-input:nth-of-type(8):checked ~ .tiki-tab-panel:nth-of-type(8),
.tiki-tabs > .tiki-tab-input:nth-of-type(9):checked ~ .tiki-tab-panel:nth-of-type(9),
.tiki-tabs > .tiki-tab-input:nth-of-type(10):checked ~ .tiki-tab-panel:nth-of-type(10) {
    display: block;
}
