a:link {color:#5faeff;text-decoration:underline;}
a:visited {color:#5faeff;text-decoration:underline;}
a:hover {color:#5faeff;text-decoration:none;}

.mediamath-full-navigation-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    background-color: #ffffff;
}

html {
    font-size: 10px;
}

a {
    text-decoration: none;
}

body {
    background-color: #FFF; /* PG0722 */
}

.mediamath {
    font-family: 'Avenir', Helvetica, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    line-height: 3rem;
    color: #333333;
}

.one {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.0s;
    animation: dot 1.3s infinite;
    animation-delay: 0.0s;
}

.two {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.2s;
    animation: dot 1.3s infinite;
    animation-delay: 0.2s;
}

.three {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.3s;
    animation: dot 1.3s infinite;
    animation-delay: 0.3s;
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}