#list-recent-earthquake{
    margin-bottom: 0px !important;
}

#list-recent-earthquake li:first-child{
    animation: highlight 1s steps(5, start) infinite;
    -webkit-animation: highlight 1s steps(5, start) infinite;
}

div.list-group-item{
    border-top: 1px solid #cccccc;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
}

@keyframes highlight {
    to {
        color:#ff0000;        
    }
}
@-webkit-keyframes highlight {
    to {
        color:#ff0000;        
    }
}