@charset "utf-8";
/* CSS Document */
#wrapper2{
	margin:0 auto;
	width:900px;
	position:relative;
}

/*Стилизация кнопки ВВЕРХ */
#back-to-top{	
	position:fixed;
	bottom:10px;
	right: 10px;
	margin-right: 10px;
	
	
	z-index: 9000;
}

#back-to-top a{
	width:70px;
	height: 70px;
	display:block;
	text-align:center;
	font:11px/100% Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	text-decoration:none;
	color:#bbb;
	/* background color transition */
	-webkit-transition:1s;
	-moz-transition:1s;
	transition:1s;
	background:url(../images/btn-up.png) no-repeat center center;
}

#back-to-top a:hover{color:#000;}

/* графическая стрелка ВВЕРХ */
#back-to-top span{
	width:64px;
	
	display:block;
	margin-bottom:7px;
	background:#111 url(../images/btn-up.png) no-repeat center center;
	/* rounded corners */
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	border-radius:15px;
	/* background color transition */
	-webkit-transition:1s;
	-moz-transition:1s;
	transition:1s;
}

#back-to-top a:hover span{background-color: #900}

