/* Кнопка наверх 
*  Фиксированное размещение сверху страницы в плашке */

.in_top{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 25px;
    cursor: pointer;
    display: none;
    background-color: #0860A8;
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.in_top:hover{
    background-color: #0860A8;
    text-decoration: underline;
    color: #FFFFFF;
    opacity: 1;
    filter: alpha(opacity=100);
}

.in_top span{
    display: block;
    width: 100%;
    margin-top: 5px;
    margin-left: 20px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif; 
    font-size: 12px;
}


