#menu a:hover { 
	
	-moz-animation: link1 0.3s linear;	
    -webkit-animation: link1 0.3s linear;
	background-color:rgba(0, 77, 147, 1);
	color:#000;
	
	
}

@-moz-keyframes link1 {
    
from {
   background-color:rgba(0, 0, 0, 0);
  
  }

to {	
   background-color:rgba(0, 77, 147, 1);
   
  }
}

@-webkit-keyframes link1 {
	
 from {
      background-color:rgba(0, 0, 0, 0);
 
  }

to {	
  background-color:rgba(0, 77, 147, 1);
  
  }
}

}
@keyframes link1 {
	
 from {
     background-color:rgba(0, 0, 0, 0);
   
  }

to {	
  background-color:rgba(0, 77, 147, 1);
  
  }
}

}

