
/* CSS Text Document */
/* BackToTop button css -------------------------------------------------------------*/
#scroll {
    position:fixed;
    right:10px;
    bottom:60px;
    cursor:pointer;
    width:70px;
    height:50px;
    background-color:#C0C0C0;
    text-indent:-9999px; /* Esto oculta el texto del botón, asegurando que no se vea en pantalla */
    display:none;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    z-index:9999;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#333333;
    opacity:1; filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

