@charset "utf-8";

div.lb img {
 margin-top: 4em;
 padding: 2em;
 background: #fff;
}

/** Here's where the magic happens **/
div.lb {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: url('gazo/screen.png');
}
div.lb:target {
  display: block;
}

/** IE doesn't support :target, so we use CSS expressions **/
div.lb {
  display: expression((document.location.toString().split('#').slice(1) == this.id)?'block':'none');
}
div.la img {
 margin-top: 4em;
 padding: 2em;
 background: #fff;
}

/** Here's where the magic happens **/
div.la {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: url('gazo/screen.png');
}
div.la:target {
  display: block;
}

/** IE doesn't support :target, so we use CSS expressions **/
div.la {
  display: expression((document.location.toString().split('#').slice(1) == this.id)?'block':'none');
}


