/* liScroll styles */


#block-minitfunctions-mdp-warningblockpublic{
  position: relative;
}
.tickercontainer { /* the outer div with the black border */
  position: absolute;
  border: 3px solid #aca198;
  border-right: none;
  border-left: none;
  background: #e5dcd3; 
  width: 1280px; 
  height: 50px; 
  margin: 0; 
  padding: 0;
  overflow: hidden;
  top: 15px;
  left: -135px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
  position: relative;
  left: 2px;
  top: 14px;
  /*width: 1276;*/
  overflow: hidden;
  height: 50px;
}
ul.newsticker { /* that's your list */
  position: relative;
  left: 150px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  /*width: auto;*/
  display: inline-block;
  color: #960C1C;
  font-size: 20px;
  clear: both;
}

ul.newsticker li {
  /*float: left; *//* important: display inline gives incorrect results when you check for elem's width */
  margin: 0;
  padding: 0;
  /*background: #fff;*/
  /*padding-right: 50px;*/
  display: inline-block;
  white-space: nowrap
}
ul.newsticker a {
  white-space: nowrap;
  padding: 0;
  color: #ff0000;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;  
} 
ul.newsticker span {
  margin: 0 10px 0 0;
}


