a:link { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }

*::-webkit-scrollbar-track{
    -moz-box-shadow: 0;
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.9);
    box-shadow:  inset 0 0 1px rgba(0,0,0,0.9);
    border-radius: 5px;
    background-color: silver; }
*::-webkit-scrollbar{
    width: 7px; }
*::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: limegreen;
    background-image: -webkit-linear-gradient(90deg,
    transparent,
    rgba(0, 0, 0, 0.4) 50%,
    transparent,
    transparent) }

a:focus,
select:focus,
textarea:focus,
button:focus,
input:focus{ outline: none; }

/* Button Styles *
button {
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}
/* Button Styles */

/* Input Styles *
input[type="text"],
input[type="email"],
input[type="password"] {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
/* Input Styles */

body {
    background-color: #555;
    line-height: 35px;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

header{
    background-color: #222;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 28px;
    width: 100%;
    padding: 25px 0;
    z-index: 25;
}

#mapViewButton {
    background-color: #222;
    position: fixed;
    top: 25px;
    right: 30px;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 18px;
    color: orange;
    padding: 5px 15px;
    border: 2px solid orange;
    border-radius: 5px;
    z-index: 30;
    cursor: pointer;
}

#guideButton {
    background-color: #222;
    position: fixed;
    top: 25px;
    left: 30px;
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 18px;
    color: orange;
    padding: 5px 15px;
    border: 2px solid orange;
    border-radius: 5px;
    z-index: 30;
    cursor: pointer;
}
#guide {
    display: none;
    background-color: #444;
    position: fixed;
    top: 150px;
    left: 3%;
    height: 745px;
    width: 94%;
    padding: 10px 0;
    border: 5px solid #222;
    border-right: 3px solid #222;
    border-radius: 5px;
    z-index: 30;
    overflow-y: scroll;
}

#map-panel {
    position: relative;
    background-image: url("images/BG-map-grey.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 175px;
    height: 525px;
    width: 850px;
    margin: auto;
    border: 0px solid white;
    z-index: 10;
}

#information {
    display: block;
    background-color: #444;
    width: 600px;
    margin: auto;
    margin-top: 200px;
    margin-bottom: 35px;
    padding: 10px 25px;
    border: 2px solid #222;
    border-radius: 5px;
}
#message {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}
#clearInfoButton {
    letter-spacing: 0.05em;
    font-family: Georgia, sans-serif;
    font-size: 20px;
    font-weight: bolder;
    color: maroon;
    margin: 0;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
}








