.announcement-wrapper {
    max-width: 600px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: Arial, sans-serif;
}

.announcement-heading {
    background: #E21E22;           /* black background */
    color: #fff;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 16px;
    text-align:center;
}

.announcement-vertical-scroller {
    height: 350px;              /* container height: 5–6 announcements */
    overflow: hidden;
    position: relative;
}

.announcement-vertical-scroller ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.announcement-vertical-scroller li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;  /* border between announcements */
    box-sizing: border-box;
}

.announcement-vertical-scroller a {
    display: block;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}



