.fade-in{
  -webkit-animation: fade-in 5s ease;
  -moz-animation: fade-in ease-in-out 5s both;
  -ms-animation: fade-in ease-in-out 5s both;
  -o-animation: fade-in ease-in-out 5s both;
  animation: fade-in 5s ease;
  visibility: visible;
  -webkit-backface-visibility: hidden;
}

@-webkit-keyframes fade-in{0%{opacity:0;} 100%{opacity:1;}}
@-moz-keyframes fade-in{0%{opacity:0} 100%{opacity:1}}
@-o-keyframes fade-in{0%{opacity:0} 100%{opacity:1}}
@keyframes fade-in{0%{opacity:0} 100%{opacity:1}}

body { 
 background: #000000;
 background-repeat: no-repeat;
 margin: auto;
 padding: 0;
 text-align: center;
}   

A:link {text-decoration: none; color: #000000;}
A:visited {text-decoration: none; color: #000000;}
A:active {text-decoration: none; color: #000000;}
A:hover {text-decoration: none; font-weight:bold; color: #FABF20;}

#divMain
{
 background: #000000;
 background-repeat: no-repeat;
 font: 12px Courier New, Times New Roman;
 color: #707070;
 margin: 0;
 padding: 5%;
 text-align: center;
 width: 600;
}   
                                