@charset "utf-8";

/* Scroll up */
    #scrollup {
    width: 36px;
    height: 36px;
    background: url("../_images/arrow-up.svg")0 0 no-repeat;
    text-indent: -9999px;
    display: none;
    position: fixed;
    bottom: 30px;
    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;
    }

