#scroller {
    cursor: pointer;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 372px;
    background-image: url('../images/scroll_bg.png');
    background-repeat:  repeat-x;
    text-align: center;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;    
}

#scroller_button {
    border: 0px solid red;
    position: absolute;
    bottom: 10px;
    width: 129px;
    height: 108px;
    margin-left: -64px;
}

@media only screen and (min-height: 1500px) {
    /* Hide scroller if the screen is high enough to display the whole main.jpg */
    /*
    @media only screen and (min-height: 850px) and (min-width: 950px) {
    */
    #scroller {
        display: none;
    }
}