.divList{
    display:flex;
    flex-direction:column;
    justify-content:top;
    text-align: left;
}

.divList>.labeledBreak{
    text-align: center;
    font-size: large;
    border-top: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    padding-left: 5px;
    padding-right: 5px;
}

.divList>.labeledBreak:first-child{
    border-top: none;
    border-bottom: 1px solid #aaaaaa;
}

.divList>.labeledBreak:last-child{
    border-top: 1px solid #aaaaaa;
    border-bottom: none;
}

.divList>.element:last-child{
    border-bottom: none;
}

.divList.horizontal{
    flex-direction: row;
}

.divList.bordered{
    border: 1px solid #aaaaaa;
}

