@keyframes blink {
  0% { color: red; }
  100% { color: black; }
}
@-webkit-keyframes blink {
  0% { color: red; }
  100% { color: black; }
}
.blink1 {
  -webkit-animation: blink 2.5s linear infinite;
  -moz-animation: blink 2.5s linear infinite;
  animation: blink 2.5s linear infinite;
}

div.fixed {
    position: fixed;
    width: 980px;
    bottom: 10px;
	/* text-align: center; */
	/* display: block; */
    margin-left: auto;
    margin-right: auto;
	border: 0px solid #000000;
}

.footer {
  /*background-image: url("images/background.png");*/
  position: absolut;
  /*width: 85%;*/
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  color: #2e2929;
  bottom: 0px;
  left: 0;
  right: 0;
  /*z-index: -1;*/
}
