﻿#back-top {
	position: fixed;
	bottom: 0; /* отступ кнопки снизу */
	right: 3%;/* отступ кнопки слева (для указания отступа справа
используйте margin-right) */
}
 
#back-top a {
	width: 105px;
	display: block;
	#text-align: center;
	font: 12px/100% Arial, Helvetica, sans-serif;
 	text-align: right;
	text-decoration: none;
	color: #c5c5c5;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #8bd200;
}
#back-top span.msg {
	padding-top:8px;
	display: block;
	float: left;
	width: 54px;
	padding-right: 12px;
} 
/* иконка стрелки (тег span) */
#back-top span.icon {
	width: 37px;
	height: 37px;
	display: block;
	margin-bottom: 7px;
	background: #777 url(../images/up-arrow.png) no-repeat center center;
	/* в скобках указываем путь к иконке */ 
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	border: 1px solid #c5c5c5;
	float: left;
}
#back-top a:hover span.icon {
	background-color: #3E3E3E;
}