  body{
  color:#ffd770;
  background-color:#00000f;
  background-image:url(../b/75.jpg);
}
a:link {
    color: #ffd700;
    text-decoration:none;
}

a:visited {
    color: #ffd700;
}

a:hover {
    color: #ff0000;
}

a:active {
    color: #0000FF;
}

.pulseit{
	-webkit-animation: pulse linear .5s infinite;
	animation: pulse linear .5s infinite;
}
@-webkit-keyframes pulse {
	0% { width:40px; } 
	50% { width:46px; } 
	100% { width:40px; }
}
@keyframes pulse {
	0% { width:40px; } 
	50% { width:46px; } 
	100% { width:40px; }
}

.flashit{
	-webkit-animation: flash linear 1s infinite;
	animation: flash linear 1s infinite;
}
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

