@font-face {
    font-family: Grunge; /* имя шрифта для CSS правил */
    src: local("Grunge"), /* проверяем наличие шрифта в ОС пользователя */
    url(fonts/Grunge.ttf); /* если шрифт не установлен, тогда загружаем его по указанному пути */
  }

* {
    border:0px none;  
    font-family:inherit;  
    font-size: 100%;  
    font-style:inherit;  
    font-weight:inherit;  
    margin:0px;  
    padding:0px;  
    vertical-align:baseline;  
}

a, a:link, a:active, a:visited { color: #ff6600; }
a:hover { color: #1FA2E1;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;

 -moz-transition: color 0.2s 0.1s ease;
 -o-transition: color 0.2s 0.1s ease;
 -webkit-transition: color 0.2s 0.1s ease;
 }

img {
    border:none;        
}
        
a  {
    text-decoration:none;
} 
