
#ticker1
{
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
}

.ticker-hidden
{
  color: #ffffff;
}

.ticker-hidden li
{
  display: inline;
}

.ticker-hidden a
{
  color: #ffffff;
}

/* liScroll styles */

/* the outer div with the black border */

.tickercontainer
{
  display: none;
  margin: 10px 10px 10px 10px;
  border: 0px;
  background-color: #D8DEE6;
  width: 100%;
  height: 22px;
  padding: 0;
  overflow: hidden;
}


/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask
{
  position: relative;
  left: 10px;
  top: 4px;
  overflow: hidden;
}


@media only screen and (max-width: 519px)
{
  .tickercontainer
  {
    display: none;
    /*display: block;*/
    margin: 0px 10px;
    width: 320px;
  }

  .tickercontainer .mask
  {
    width: 300px;
  }
}

@media only screen and (min-width: 520px)
{
  .tickercontainer
  {
    display: block;
    width: 500px;
  }

  .tickercontainer .mask
  {
    width: 500px;
  }
}

@media only screen and (min-width: 830px)
{
  .tickercontainer
  {
    display: block;
    width: 810px;
  }

  .tickercontainer .mask
  {
    width: 810px;
  }
}

@media only screen and (min-width: 1000px)
{
  .tickercontainer
  {
    display: block;
    width: 980px;
  }

  .tickercontainer .mask
  {
    width: 960px;
  }

}



/* that's your list */
ul.newsticker
{
  position: relative;
  left: 750px;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.newsticker li 
{
  float: left; /* important: display inline gives incorrect results when you check for elem's width */
  margin: 0;
  padding: 0;
  padding-left: 16px;
  /*background: #fff;*/
}

ul.newsticker a
{
  white-space: nowrap;
  padding: 0;
  color: #000000;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  margin: 0 50px 0 0;
}

ul.newsticker span
{
/*  margin: 0 10px 0 0;*/
  margin: 0px;
}

ul.newsticker span.category_red
{
  color: red;
}

ul.newsticker span.category_orange
{
  color: orange;
}

ul.newsticker span.category_purple
{
  color: purple;
}

ul.newsticker span.category_green
{
  color: green;
}

ul.newsticker span.category_blue
{
  color: blue;
}
