@charset "utf-8";

/* Scroll up */
    #scrollup {
    width: 38px;
    height: 38px;
    background: url("../_images/arrow-up.png")0 0 no-repeat;
    text-indent: -9999px;
    display: none;
    position: fixed;
    bottom: 48px;
    right: 30px;
    opacity: 0.6;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
    }
    #scrollup:hover {
    opacity: 1;
    }

