body { 
background: url(../img/bodybg/bg1.png) repeat left top; 
}
/* text flow */
.sitemessage {
  display: inline-block;
  white-space: nowrap;
  animation: floatText 35s infinite linear;
  padding-left: 100%; /*Initial offset*/
  /* sk */
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  /*background: #c00;*/
  font-size: 21px;
  font-weight: 600;
}
.sitemessage:hover {
  animation-play-state: paused;
}
@keyframes floatText {
  to {
    transform: translateX(-100%);
  }
}
/* end text flow */