#scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: -4px;
	background: #A1C905;
	padding: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 4px;
	border-radius: 3px;
	text-decoration: none;
	-ms-transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
	transform: scale(0, 0);
	opacity: 0.0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#scroll-to-top .vantage-icon-arrow-up {
	font-size: 20px;
	display: block;
	height: 20px;
	color: #FFFFFF;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#scroll-to-top.displayed {
	-ms-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 0.3 !important;
	z-index: 500;
}
#scroll-to-top.displayed:hover {
	opacity: 0.8 !important;
}
