a#scroll-to-top {
	
	/* Background image, replace in images folder */
	background-image: url('../images/arrow.png');
	background-repeat: no-repeat;
	background-position: 0px 0px;
	
	/* Match to background image size */
	width: 51px;
	height: 29px;
	
	/* Postion on the page */
	position: fixed;	
	right: 5%;
	bottom: 150px;
	
	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	
	/* Other */
	cursor: pointer;	
	outline: 0;
	z-index: 999;
}

a#scroll-to-top:hover {
	background-position: 0px -29px;
}
