
.pagedown {
    position: relative;
    width: 20%;
    font-size: .7em;
	margin-top: 20px;
    margin-left: 3px;
    line-height: 43px;
}

div.bubble,
div.bubble2,
div.bubble3 {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 18px;
    background: -moz-linear-gradient(top, #fff, #00ff00);
    -moz-animation-name: Flashingbubble;
    -moz-animation-duration: 6.77s;
    -moz-animation-iteration-count: infinite;
    animation-name: Flashingbubble;
    animation-duration: 6.77s;
    animation-iteration-count: infinite;
    -webkit-border-radius: 20px !important;
    border-radius: 20px !important;
-moz-border-radius: 20px !important;
    background: -webkit-gradient(radial, center center, 0, center center, 100, from(#fff), to(#00ff00));
    background: radial-gradient(circle, #fff, #00ff00);
    -webkit-animation-name: Flashingbubble;
    -webkit-animation-duration: 6.77s;
    -webkit-animation-iteration-count: infinite;
    background: -o-linear-gradient(top, #fff, #00ff00);
    top: 8px;
    left: 8px
}
div.bubble2 {
    -webkit-animation-duration: 10.31s;
    -moz-animation-duration: 10.31s;
    animation-duration: 10.31s
}
div.bubble3 {
    -moz-animation-duration: 8.22s;
    -webkit-animation-duration: 8.22s;
    animation-duration: 8.22s
}


.dot {
left:0;
    position: absolute;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 40px !important;
    border-radius: 40px !important;
-moz-border-radius: 40px !important;
    background: -moz-linear-gradient(top, #fff, #00ff00);
    -moz-transition: all .2s linear;
    -moz-transform: scale(.9);
    background: -webkit-gradient(radial, center center, 0, center center, 100, from(#fff), to(#00ff00));
    background: radial-gradient(circle, #fff, #00ff00);
    background: #00ff00;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-transform: scale(.9);
    transform: scale(.9);
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    padding: 0;
    font-size: 28px;
    text-align: center
}

.bubble a:hover {
    background: -moz-linear-gradient(top, #fff, #00ff00);
    -moz-transform: rotate(90deg) scale(1);
    -moz-box-shadow: 0 0 20px #fff;
    background: -webkit-gradient(radial, center center, 0, center center, 100, from(#fff), to(#00ff00));
    background: radial-gradient(circle, #fff, #00ff00);
    -webkit-transform: rotate(90deg) scale(1);
    -webkit-box-shadow: 0 0 20px #fff;
    transform: rotate(90deg) scale(1);
    box-shadow: 0 0 20px #fff
}
@-webkit-keyframes Flashingbubble {
    0% {
        -webkit-transform: scale(1);
        opacity: .2;
        -webkit-animation-timing-function: ease-in-out
    }
    50% {
        -webkit-transform: scale(3);
        opacity: .1;
        -webkit-animation-timing-function: ease-in-out
    }
    100% {
        -webkit-transform: scale(1);
        opacity: .2;
        -webkit-animation-timing-function: ease-in-out
    }
}
@-ms-keyframes Flashingbubble {
    0% {
        transform: scale(1);
        opacity: .2;
        animation-timing-function: ease-in-out
    }
    50% {
        transform: scale(3);
        opacity: .1;
        animation-timing-function: ease-in-out
    }
    100% {
        transform: scale(1);
        opacity: .2;
        animation-timing-function: ease-in-out
    }
}
@-moz-keyframes Flashingbubble {
    0% {
        -moz-transform: scale(1);
        opacity: .2;
        -moz-animation-timing-function: ease-in-out
    }
    50% {
        -moz-transform: scale(3);
        opacity: .1;
        -moz-animation-timing-function: ease-in-out
    }
    100% {
        -moz-transform: scale(1);
        opacity: .2;
        -moz-animation-timing-function: ease-in-out
    }
}
