@import url(gradient.css);

/* Background Style Sheet */
body#page { background: #fdfdfd url(../../images/background/noise/page.jpg) repeat; }

#page-bg {
    background: url(../../images/background/noise/dots.png) no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	animation: animatedBackground 120s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: animatedBackground 120s linear infinite;
}
@keyframes animatedBackground 
{
  from { background-position: 0 100%; }
  to { background-position: 0 0; }
}
@-webkit-keyframes  animatedBackground 
{
  from { background-position: 0 100%; }
  to { background-position: 0 0; }
}