/**
 * Basis formating for the whole page
 **/
html, body{
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 11px;
}

/**
 * A "page loading" visualisation displayed before the map is loaded
 */
#loading{
  position: relative;
  left: 50%;
  top: 40%;
  width: 500px;
  margin-left: -250px;
  text-align: center;
}

#loading h1{
  font-size: 72px;
  font-weight: bold;
  color: #efefef;
}

/**
 * Holds the Google map
 */
#map{
  height: 100%;
  width: 85%;
  float: left;
  border-right: 8px solid #a5a6aa;
  background-color: #a5a6aa;
}

/**
 * Holds the dashboard with functions for using the map
 */
#dashboard{
  width: 12%;
  float: left;
  padding: 5px 5px 5px 5px;
  overflow: hidden;
}

/**
 * Header for the dashboard
 */
.header{
  background-color: #a5a6aa;
  padding: 3px 3px 3px 3px;
  font-weight: bold;
  font-size: 11px;
  width: 100%;
  color: white;
}

.content{
  padding-top: 5px;
  padding-bottom: 5px;
}

#configSaveAsCenter{
  display: none;
}

#configEraseCustomCenter{
  display: none;
}

/**
 * Removing extra space after the form and around p, h1 and h2 objects
 **/
form, p, h1, h2{
  margin:0;
  padding:0;
}

p{
  margin-top: 5px;
}

.input{
  font-size: 11px;
  border: 1px solid #a5a6aa;
  width: 100%;
}

/**
 * The checkboxes
 **/
.functionRadio {
  display: block;
  float: left;
  background-color: white;
}

.functionLabel {
  display: block;
  text-align: left;
  width: 80%;
  margin-left: 20px;
}

.separator{
  overflow: hidden;
  margin:0;
  padding:0;
  background-color: #a5a6aa;
  height: 1px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  clear: both;
}