html, body {
   height: 100%;
}

#map {
	width: 100%; 
	height: 100%; 
}

#progress {
    display: block;
    position: absolute;
    z-index: 1000;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 70px;
    margin-top: -20px;
    margin-left: -110px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    border:1px solid black;
    padding: 8px;
}
#loadall {
    display: block;
    position: absolute;
    z-index: 1001;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 150px;
    margin-top: -20px;
    margin-left: -110px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    border:1px solid black;
    padding: 8px;
}
#infowindow {
    display: none;
    position: absolute;
    z-index: 1000;
    left:2%;
    bottom:2%;
    width:50%;
    max-width:500px;
    height:50%;
    margin:5px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.7);
}

#progress-bar {
    width: 0;
    height: 15px;
    background-color: #ff0000;
    border-radius: 4px;
}

#options { z-index: 1000;position: absolute; bottom: 0; left: 0; padding: 10px; background: rgba(255,255,255,0.6);display:none;
            border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; line-height: 1; }
        #options input { width: 200px; }
        #options label { width: 60px; float: left; text-align: right; margin-right: 10px; color: #555; }


#theCanvas {
    z-index: 2;
    position: absolute;
    left: 0px;
    top:0px;
    /*width:100%;
    height:100%; */
    pointer-events: none; /* FIXME probably breaks in some browsers */
    float: left;
} 

