<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.politic-page {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.politic-page * {
    font-family: sans-serif;
    box-sizing: border-box;
    margin: 0;
    color: #000;
}

.politic-page__aside {
    max-width: 375px;
    background: #fbfbfb;
}

.politic-page__body {
    flex: 1;
    padding: 30px 0 0;
}

.politic-page__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding: 30px;
}

.politic-page__nav-heading {
    font-size: 25px;
}

.politic-page__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.politic-page__nav-item {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.politic-page__nav-item.--active {
    font-weight: bold;
}

.politic-page__content {
    display: none;
}

.politic-page ul {
    list-style: initial;
    padding: 25px;
}

.politic-page li {
    position: relative;
    padding-top: 5px;
}

.politic-page ul ul {
    list-style: square;
}

.politic-page ul ul ul {
    list-style: circle;
}

.politic-page  h2 {
    font-size: 1.5em;
}

.politic-page h3 {
    font-size: 1.3em;
}

.politic-page a {
    display: inline;
}

@media (max-width: 992px) {
    .politic-page__aside {
        display: none;
    }

    .politic-page__body {
        padding-top: 0;
        display: grid;
        grid-gap: 10px;
    }

    .politic-page__nav-item {
        background: #f7f7f7;
        width: 100%;
        padding: 15px 45px 15px 15px;
        position: relative;
        z-index: 1;
    }

    .politic-page__content {
        padding: 15px;
    }

    .politic-page__nav-item:after {
        content: "";
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 25px;
        height: 25px;
        background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" width="800px" height="800px" viewBox="0 0 24 24" fill="none"&gt;&lt;path d="M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z" fill="%230F0F0F"/&gt;&lt;/svg&gt;') center no-repeat;
        background-size: 23px;
    }

    .politic-page__nav-item.--active:after {
        transform: rotate(180deg);
    }

    .politic-page__nav-item:not(.--active) {
        box-shadow: 0 2px 3px rgb(0 0 0 / 8%);
    }
}</pre></body></html>