/* Pill style */
#scrollUp {
    bottom: 20px;
    right: 20px;
    background-color: #39C; /* color de fondo */
    color: #fff; /* color del taxto */
    font-size: 12px;
    font-family: sans-serif;
    text-decoration: none;
    opacity: .9;
    padding: 10px 20px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    -webkit-transition: background 200ms linear;
    -moz-transition: background 200ms linear;
    -o-transition: background 200ms linear;
    transition: background 200ms linear;
    -webkit-backface-visibility: hidden;
	box-shadow:3px 5px 5px #000;
}

#scrollUp:hover {
    background-color: #06F; /*COLOR PASAR POR ENCINA MENUS*/
}
#scrollUp:active {
	background:#006; /*COLOR AL HACER CLIK MENUS*/
	font-weight: bold;
}
