
.NumGazetteListControl {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}


.NumGazetteListControl .title {
    background: #f6f6f6;
    border-bottom: 1px solid #dcdcdc;
    padding: 10px 12px;
    text-align: center;
}

.NumGazetteListControl .title span {
    font-weight: bold;
    color: #b10804;
    text-transform: uppercase;
}


.NumGazetteListControl .contents {
    /* padding: 10px 12px; */
}


.NumGazetteListControl .items {
    /* margin-bottom: 8px; */
    counter-increment: item;
    position: relative;
    padding-left: 20px;
    /* border-bottom: 1px solid #ddd; */
    padding: 8px 20px;
    padding-top: 5px;
    padding-right: 10px;
}

.NumGazetteListControl .items:has(a.item.active) {
    background: #f5f5f5;
}

.NumGazetteListControl .items:hover {
        background: #f5f5f5;
}

.NumGazetteListControl .items:hover::before {
    color: #b10804;
}

.NumGazetteListControl .items:has(a.item.active)::before {
    color: #b10804;
}

.NumGazetteListControl .items:not(:last-child) {
     border-bottom: 1px solid #ddd;
}



.NumGazetteListControl .items::before {
    content: counter(item) ".";
    position: absolute;
    left: 5px;
    top: 7px;
    /* color: #c00000; */
    font-weight: bold;
    font-size: 12px;
    color: #009ae5;
}

.NumGazetteListControl .contents {
    counter-reset: item;
    /* padding: 8px 15px; */
}


.NumGazetteListControl .item {
    display: block;
    /* color: #0066cc; */
    text-decoration: none;
    line-height: 1.45;
    font-size: 12px;
    text-align: justify;
    font-weight: bold;
    color: #009ae5;
    line-height: 20px;
}

.NumGazetteListControl .item:hover {
    color: #b10804;
    text-decoration: none;
}

.NumGazetteListControl .item.active {
    color: #b10804;
    font-weight: bold;
}