﻿#scrollup {
	position: fixed;
-webkit-transition: 2s ease-in-out;-o-transition: 2s ease-in-out;	transition: 2s ease-in-out;
	border-radius: 5px; /* скругление углов */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	right:5px;/* отступ слева */
	bottom:0; /* отступ снизу */
	display: none; /* спрятать блок */
	cursor: pointer;
	border-style: 1;
	border-color: #0033CC;
	z-index: 2000;
	box-shadow: 0 7px 17px -2px rgba(117, 117, 117, 1);
	background: #66CCCC;
}
#scrollup:hover { background: #FF9900;}
