   /*Стили для кнопки Наверх*/
   .scrollup {
    width:58px;
    position:fixed;
    bottom:32px; /*Это позиция иконки. 110 пикселей с самого низу/110-32=78*/
    right:450px; /* и 40 пикселей справа./40-15=25*/
    z-index: 100;    
    background: url('button_up.png') no-repeat scroll 50% ;
    display: none;
    padding: 36px 0 5px 0;
    text-align: center;
    opacity: 0.85; /* Значение прозрачности */
    filter: alpha(Opacity=85); /* Прозрачность в IE */ 
  }
  .scrollup:hover {
    cursor: pointer;
    background: url('button_up.png') no-repeat scroll 50%;
    transition: all .5s;
    transform:scale(1.1);
  }  
  /*конец Стили для кнопки Наверх*/
    a { color: #3775ab; text-decoration: none; }
    a:hover {color: #d7853c;}
    a:-webkit-any-link { cursor: pointer;}
  /*запрос на "отскок" кнопки Наверх вправо, если ширина экана уменьшится до 1540px)*/
  @media only screen and (max-width: 1540px)  {
    .scrollup {
      position:fixed;
      right:0;
    }
  }             