body {
    margin: 0;
    padding: 0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* the layout of the legend panel */
#legend {
    position: absolute;
    /* increased value for "bottom" property to 35px from 0px to shift whole legend up so source can be on the screen and not below the map */
    bottom: 35px; 
    right: 0;
    width: 110px;
    background: #fff;
    margin-right: 20px;
    /* Changed margin-bottom property to 0px from 40px in line below to shift legend downwards*/
    margin-bottom: 0px;
    /* Changed height property from 400 to 550px to fit the sources into the legend*/
    height: 590px;
    width: 180px;
    padding: 10px;
    border-radius: 3px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    opacity: 0.9;
}

/* each line for a break */
.break {
    position: relative;
    margin: 0px;
    padding: 0px;
}

/* basic style for a dot/circle */
.dot {
    display: inline-block;
    margin-top: 10px;
    border-radius: 50%;
    opacity: 0.6;
}

/* the label for the dot */
.dot-label {
    position: absolute;
    top: 0;
    right: 0;
    font-style: italic;
}

/* the text color of a hyper link */
a {
    color: black
}

#title {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 20px;
    margin-left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 25pt;
    color: white
}


#subtitle {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 70px;
    margin-left: 190px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15pt;
    color: white
}