.disclaimer, .authors {
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

h2,h3,h4 {
    font-family: 'Times New Roman', serif;
}

h1 {
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h2 {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.article {
    margin-bottom: 30px;
}
.section {
    margin-left: 20px;
}
.date {
    text-align: right;
    font-style: italic;
    margin-bottom: 20px;
}
p {
    text-align: justify;
}
.numbered-list {
    list-style-type: none;
    padding-left: 0;
}
.numbered-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.list-number {
    flex: 0 0 40px;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}
.list-text {
    flex: 1;
}
.bullet-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 5px;
}
.bullet-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}
.bullet-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}