

#scroll_bottom {
    position: fixed;
    right: 10px;
    bottom: 65px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #888888;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 999;
    opacity: 0.5;
}
#scroll_bottom span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -2px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-top-color: #ffffff;
}
#scroll_bottom:hover {
    background-color: #e74c3c;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}
