#scrollUp {
    -moz-box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
    -moz-transition: bottom 150ms linear;
    -webkit-box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: bottom 150ms linear;
    background-color: #E6E6E6;
    background-image: -moz-linear-gradient(top, #ebebeb, #dedede);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ebebeb), to(#dedede));
    background-image: -webkit-linear-gradient(top, #ebebeb, #dedede);
    background-image: -o-linear-gradient(top, #ebebeb, #dedede);
    background-image: linear-gradient(to bottom, #ebebeb, #dedede);
    background-repeat: repeat-x;
    bottom: -10px;
    box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.2);
    color: #828282;
    font-family: sans-serif;
    font-size: 14px;
    height: 70px;
    line-height: 20px;
    padding: 10px 5px;
    right: 30px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    transition: bottom 150ms linear;
    width: 70px;
}

#scrollUp:hover { bottom: 0px }