
/* Prevent text magnification on orientation change on Android.
 * Seems like that ought to be something the user chooses in chrome,
 * but chrome doesn't seem to offer that.
 */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;

    color: white;
    background: #556;
}

a:link {
    color: #ffff00;
}
a:visited {
    color: #aaffaa;
}
a:hover, a:active {
    color: #ffffaa;
}

#satFrame {
    background: black;
    color: white;
    position: relative;
    width: 99%;
    height: 300px;
    padding: 0px;
    border-style: ridge;
}

#satCanvas {
    width: 99%;
    height: 300px;
    display: block;
    background: black;
}

