
html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

#google_map_canvas {
    height: 100%;
}

.infoBox {
    /* After changing the infobox dimensions, adjust the position-x value to centre the arrow. */
    background: url(../images/tipbox.gif) no-repeat -41px 0;
    opacity: 0.75;
    /* To centre the infobox, this value should be twice that of pixelOffset.x in the map_script.js script. */
    width: 200px;
}

/* Style the appearance of the InfoBox. */
.infobox-content {
    border: 2px solid black;
    background: #333333;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin-top: 8px;
    padding: .5em 1em;

    /* Apply border radius. */
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    /* Apply shadow. */
    text-shadow:0 -1px #000000;
    -webkit-box-shadow: 0 0  8px #000;
    box-shadow: 0 0 8px #000;
}
