.miniMap {
  position: absolute;
  top: 4.65em;
  left: 44%;
  margin: 12px 0 0 12px;
  width: 11%;
  min-height: 100px;
}

.mmContainer {
  overflow: hidden;
  margin: 0 0 12px 0;
  -moz-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}

.mmPreview {
  position: fixed;
  width: 400%;
  -moz-transform: scale(0.25) translate(-150%, -150%);
  -ms-transform: scale(0.25) translate(-150%, -150%);
  -webkit-transform: scale(0.25) translate(-150%, -150%);
  transform: scale(0.25) translate(-150%, -150%);
  -moz-transition: top 0.3s ease-out;
  -o-transition: top 0.3s ease-out;
  -webkit-transition: top 0.3s ease-out;
  transition: top 0.3s ease-out;
}

.mmHandle {
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 100px;
  border: 12px solid #F8B01D;
  margin: -12px 0 0 -12px;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  -moz-transition: height 0.3s ease-out, top 0.3s ease-out;
  -o-transition: height 0.3s ease-out, top 0.3s ease-out;
  -webkit-transition: height 0.3s ease-out, top 0.3s ease-out;
  transition: height 0.3s ease-out, top 0.3s ease-out;
}

.dragging .mmHandle, .dragging .mmPreview {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

.stick .miniMap.sticky {
  position: fixed;
  top: 0;
}

header {
  background: #839496;
  margin: 0;
  padding: .25em 1em;
}
header h2 {
  color: #FDF6E3;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #93A1A1;
  padding: .25em 1em;
}
footer h2 {
  color: #FDF6E3;
}

#container {
  position: relative;
  width: 44%;
}

.stuff {
  background: #CB4B16;
  padding: .25em 1em;
  margin: 0 0 5.65em 0;
}
.stuff h1 {
  color: #FFF;
  margin-bottom: 3em;
}
.stuff var {
  display: block;
  font-weight: bold;
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  margin: 0 .5em 3em .5em;
  height: 500px;
  line-height: 500px;
  font-size: 7em;
  text-align: center;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
}
.stuff:after {
  position: absolute;
  right: 1em;
  bottom: 1em;
  content: 'The Bottom';
  color: #FFF;
  font-weight: bold;
}

#description {
  z-index: -1;
  position: fixed;
  top: 6.65em;
  right: 5%;
  padding: 2em 1.5em;
  background: #EEE8D5;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
}
#description h1 {
  color: #CB4B16;
  font-size: 3em;
  margin: 0;
  line-height: 1em;
}
#description h2 {
  line-height: 1.5em;
  margin: 0;
  color: #586E75;
}