@charset "utf-8";
/* CSS Document */

#returnOnTop {
    background: url('../images/up.png') no-repeat;
	background-size: 50px 50px;
    cursor: pointer; 
    display: none;
    filter: alpha(opacity = 50); /* IE < 8 */
    height: 50px;
    width: 50px;
    opacity: 0.5;
    position: fixed;
    right: 2%;
    bottom: 5%;
}

#returnOnTop:hover {
    filter: alpha(opacity = 100); /* IE < 8 */
    opacity: 1;
}

