/* This is just to make things look a bit better */
body {
  font: 18px roboto thin;
}

h2.subtitle {
  font-size: 0.8em;
  padding-left: 10px;
  color: #666;
}

/* Basic styling for the step links */
a.step-link {
  padding: 5px;
  background-color: #000;
  color: #888;
  text-decoration: none;
}

a.step-link:hover, a.active {
  color: #ddd;
}

#container{
  margin: auto;
  padding-top: 40px;
  width: 980px;
}

/* Here is our relatively positioned
 * container div to hold the rest of the
 * visualization */
#vis-container {
  position: relative;
  width: 980px;
  height: 450px;
  margin-top: 10px;
}

/* All the .annotation-step divs are inside
 * #annotation-steps. z-index ensures annotations
 * stay on top of visualization. */
#annotation-steps {
  position: absolute;
  z-index: 40;
}

#vis-nav {
  z-index: 20;
}

/* This is where you would create the actual visualization.
 * Right now, lets just change the background color. */
#vis-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  background-color: #fff;
}

/* By default, all annotation-steps are hidden. */
.annotation-step {
  position: absolute;
  display: none;
}

/* Finally we can position each annotation exactly how
 * we want. */
.annotation {
  position: absolute;
}

#step1-high-annotation {
  left: 150px;
  top: 30px;
  width: 250px;
}

#step2-high-annotation {
  left: 130px;
  top: 20px;
  width: 270px;
}

#step3-high-annotation {
  left: 110px;
  top: 20px;
  width: 300px;
