html { padding: 0; margin: 0; overflow-y: hidden }

body {
  background: #000;
  color: #FFF;
  font: 62.5%/140% 'Open Sans', Helvetica, sans-serif;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

header {
  background: #666;
  padding: 1em;
  overflow: hidden;
  position: relative;
  height: 10%;
}

.occupied header {
  background: #C6322A
}

.available header {
  background: #51B951
}

header h2 {
  color: #FFF;
  margin: 0;
  float: left;
  font-size: 3em;
}

header h3 {
  color: #FFF;
  margin: 0;
  float: right;
  font-size: 2em;
}

header h2 em {
  font-style: normal;
}

section {
  padding: 1em;
  font-size: 2em;
  line-height: 140%;
  overflow-y: hidden;
}

article {
  width: 100%;
  height: 60%;
}

aside {
  width: 100%;
  height: 30%;
}

article {}

.occupied article h3 {
  color: #C6322A
}

.available article h3 {
  color: #51B951;
}

article h1 {
  font-size: 200%;
  line-height: 140%;
  margin: 0;
  padding: 0
}

article h4 {
  font-weight: normal;
  margin: 0;
  padding: 0
}

aside {}

aside h3 {
  color: #999
}

aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

aside ul li {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1em;
  //-webkit-column-count: 2;
  //-webkit-column-gap: 2em;
  padding-right: 2em;
}

aside ul li span {
  font-weight: normal;
}

#error {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: #000;

  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibilty: hidden;

  -webkit-perspective: 1300px;
  perspective: 1300px;

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;

  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);

  -webkit-transition: all 500ms;
  transition: all 500ms;

  -webkit-animation: flip 1s;
  animation: flip 1s;
}
