/* Image style */
#scrollUp {
    background-image: url("../../images/backtotop.png");
	background-position:top;
    bottom: 30px;
    right: 30px;
    width: 53px;    /* Width of image */
    height: 53px;   /* Height of image */
	-o-transition:color .0s ease-out, background 0.0s ease-in;
	-ms-transition:color .0s ease-out, background 0.0s ease-in;
	-moz-transition:color .0s ease-out, background 0.0s ease-in;
	-webkit-transition:color .0s ease-out, background 0.0s ease-in;
	transition:color .0s ease-out, background 0.0s ease-in;
}

#scrollUp:hover{
	background-position:bottom;
}