#map-canvas {
  width: 255px;
  height: 255px;
}

#loading {
  display: none;
  position: absolute;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  font-family: sans-serif;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  box-shadow: 1px 1px 0 0 rgba(0,0,0,0.5);
}

.prompt {
  position: absolute;
  left: 10px;
  width: 600px;
  background: #fff;
  padding: 10px;
  bottom: 10px;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.25);
}
  .prompt h1 {
    margin: 5px 0;
    font-size: 25px;
    font-weight: normal;
  }
  .prompt h2 {
    margin: 5px 0;
    font-weight: normal;
    font-size: 16px;
    font-style: italic;
  }
  .prompt p {
    font-size: 14px;
    line-height: 1.5em;
  }
  .prompt code {
    background: #f4f4f4;
  }
  .prompt small {
    font-style: italic;
  }

.float-left {
	float: left;
	margin-right: 10px;
}

.float-right {
	float: right;
}


#flash-message, .flash-message {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 9999;
}
  .flash-content {
    font-size:14px;
    padding: 5px 10px;
    background: #FAF9CC;
    display: inline-block;
    color: #000;
    font-family: sans-serif;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 0px 10px 2px rgba(100,100,100, .2);
    border: 1px solid rgba(255,255,255, .2);
    border-bottom: none;
  }