body, html {
  height: 100%;
  width: 100%;
}

#menu {
    width: 200px;
    position: fixed;
    left: -5px;
    top: 30px;
    z-index: 10;
}

#menu .home {
    width: 100px;
    height: 35px;
    position: relative;
    left: -50px;
    padding: 7px 4px;
    margin-bottom: 50px;
    border: 0px;
    border-radius: 4px;
    color: white;
    background-color: black;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 0.5;
}

#menu .homelabel {
    padding: 7px;
}

#menu .city {
    height: 140px; 
    overflow: hidden; 
    margin-bottom: 10px; 
    position: relative; 
    left: -100px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 0.5;
}

#menu .selected {
    left: 0px; 
    opacity: 1.0;
}

#menu img, a {
    width: 100%;
    height: 100%;
    z-index: -1;
}

#menu a {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

#menu .city .refresh {
    position: absolute;
    bottom: 7px;
    left: 20px;
    width: 100%;
    height: 30px;
    z-index: 10;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 11;
}

#menu .city .disabled {
    color: gray;
}

#menu .city .label {
    position: absolute;
    bottom: 5px;
    right: -58px;
    width: 100%;
    height: 30px;
    z-index: 10;
    color: white;
    font-size: 16px;
    font-weight: normal;
    z-index: 11;
}

#menu .city .background {
    background-color: black;
    opacity: 0.6;
    height: 40px;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 195px;
    z-index: 10;
}

#map {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

#map-canvas  {
    width: 100%;
    height: 100%;
    border-color: #AAAAAA;
    border-style:solid;
    border-width:1px;
    margin:auto;
    position:relative;
}

#form {
    width: 420px;
    height: 440px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    color: #FFFFFF;
    font-weight: none;
    font-size: 16px;
    z-index: 10;
}

#form .background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000;
    opacity: 0.6;
    z-index: -1;
    border: 1px solid #777777;
    border-radius: 4px;
    bottom:0px;

}

#form form {
    margin: 20px;
    z-index: 10;
}

.has-error .help-block,
.has-error .form-control-feedback {
    color: #ff2020 !important;
}

.alert {
    padding: 8px !important;
}

#info-message {
    position: relative;
    margin:auto;
    margin-top: 3%;
    width: 50%;
}

#info-message-background {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: black;
    opacity: 0.6;
    font-size: 2em;
    margin: auto;
    padding: 20px;
    border: 1px solid #777777;
    border-radius: 6px;
    z-index: 1;
}

#info-message-text {
    position: absolute;
    opacity: 1.0;
    margin: auto;
    width: 100%;
    top: 0px;
    left: 0px;
    text-align: center;
    font-size: 2em;
    padding: 20px;
    font-weight: bold;
    z-index: 2;
    color: white;
}






