#tags a  {
    font-family: Helvetica, Arial, sans-serif;
    background: #588fe5;
    display: inline-block;
    color: #fff;
    position: relative;
    padding: 0 10px;
    border-radius: 4px;
    /*border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;*/
    margin: 0 10px 0 0;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    border-right: 0;
}
 
#tags a:hover {
    background-color: #739fe4;
}
 
#tags a:before {
    background: #fff;
    width: 10px;
    height: 10px;
    content: "";
    display: inline-block;
    border-radius: 20px;
    margin: 0 5px 0 0;
}
/*
#tags a:after {
    display: inline-block;
    border: 20px solid;
    border-color: transparent transparent transparent #588fe5;
    height: 0;
    width: 0;
    position: absolute;
    right: -40px;
    top: 0;
    content: "";
    display: inline-block;
} 
 
#tags a:hover:after {
    border-color: transparent transparent transparent #739fe4;
}
*/