/***TO TOP BUTTON***/
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 50px;
	right: 30px;
    left: auto;
	overflow:hidden;
	width:70px;
	height:48px;
    opacity: 0.5;
    transition: .5s;
}
#toTop:hover {
    opacity: 1;
}
#toTop:after {
    content: 'НАВЕРХ';
    left: 16px;
    top: 20px;
    position: absolute;
    height: 18px;
    color: #535c69;
    font-weight: bold;
    font-size: 11px;
}
#toTop:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 35px 15px 35px;
    border-color: transparent transparent #535c69 transparent;
    display: block;
    left: 0;
    top: 0;
}
#toTopHover {
    opacity: 1;    
    width:70px;
	height:48px;
	display:block;
	overflow:hidden;
	float:left;
}

#toTop:active, #toTop:focus {
	outline:none;
}