@font-face {
  font-family: "Armata-Regular";
  src: url("Armata-Regular.ttf") format("truetype");
}

P {
  margin: 0;
}

.grid {
  background: #e7eae3;
}

.mapTile {
  box-sizing: border-box;
  position: absolute;
  background-color: #b2bba5;
  border-bottom: solid #ccd2c3 1px;
  border-right: solid #ccd2c3 1px;
}

.buildingNode {
  box-sizing: border-box;
  position: absolute;
  border: solid #666 1px;
  font-family: 'Armata-Regular';
  font-size: 11px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}

.buildingNode.selected {
  outline:solid rgba(51, 105, 255, .6) 2px;
}

.buildingNode SPAN {
  position: relative;
  top: calc(50% - 6px);
}

.toolbar {
  position: fixed;
  top: 0px;
  right: 0px;
  padding: 10px;
}

BUTTON {
  display: inline-block;
  padding: 0.7em 1.4em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.15em;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Armata-Regular';
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #3369ff;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  text-align: center;
  position: relative;
  border: none;
}

BUTTON:active {
  top: 0.1em;
}

BUTTON:hover {
  background-color: #4379ff;
}

@media all and (max-width:30em) {
  BUTTON {
    display: block;
    margin: 0.4em auto;
  }
}

#importDialog,
#helpDialog {
  width: 70%;
  top: 20px;
}

#importDialog TEXTAREA {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}

#helpDialog P {
  margin-bottom: 16px;
}

#changeLog IMG {
  display: none;
  position: absolute;
  top: 18px;
  right: 0px;
}