#ticker-line {
    background-color: #eee;
    line-height: 40px;
    border-radius: 3px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 2px 2px 2px #888;	
    -webkit-box-shadow: 2px 2px 2px #888;
    -moz-box-shadow: 2px 2px 2px #888;
}
#ticker-line .logo {
    display:table-cell;
    padding-left:5px;
    background-color:#ddd;
}
#ticker-line .arrow-wrap {
    display:table-cell;
}
#ticker-line .arrow {
    border-color: transparent transparent transparent #ddd;
    border-style: solid;
    width: 0;
    height: 0;
    border-top-width: 20px; /*half of arrow width*/
    border-right-width: 0;
    border-bottom-width: 20px; /*half of arrow width*/
    border-left-width: 20px; /*arrow length*/
    margin-bottom:-15px; /*do not understand, but needed*/
}
#ticker-line .ticker {
  display: table-cell;
  width: 100%;
  position: relative;
  /* cursor: pointer; */
  overflow:hidden;
}
#ticker-line .ticker-inner-div,
#ticker-line .ticker > [class^="marquee-"] {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  top:0;
}
#ticker-line .ticker-content-items {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
#ticker-line .ticker-content-items li {
  display: inline-block;
}
#ticker-line .ticker-content-items li:after {
  content: "+++";
  margin: 0 1em;
}
