* {
  margin: 0;
  padding: 0;
}

html, body {
  background: #aaa url('bg.png') repeat-x 50% 50%;
  height: 100%;
  overflow: hidden;
  font-family: 'arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

#pages {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: #939a9f;
  z-index: 100;
  overflow-y: scroll;
}

#pages h3 {
  font-size: 14px;
  margin: 10px 10px 5px 10px;
}

#pages ul {
  background: #bbb;
  list-style-type: none;
  margin: 0 5px 15px 5px;
  padding: 4px 4px 2px 4px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

#pages li {
  background: #ccc;
  display: block;
  margin: 0 0 2px 0;
  padding: 4px 8px 4px 8px;
  border: 1px solid #939a9f;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
}

#pages li:hover {
  background: #a4aab0;
}

#pages li.selected {
  background: #a4aab0;
  border: 1px solid #ddd;
}

#area {
  position: absolute;
  top: 0;
  left: 200px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

#area img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.33);
  -ms-interpolation-mode: bicubic;
}

#click-getter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  background: url('blank.png');
  cursor: move;
}

#zoom {
  position: absolute;
  top: 10px;
  left: 215px;
  background: url('zoom.png') no-repeat;
  width: 41px;
  height: 193px;
}

#zoom-hand {
  position: absolute;
  top: 0;
  left: 4px;
  width: 33px;
  height: 18px;
  background: url('zoom-hand.png') no-repeat;
  margin: 28px 0 0 0;
  cursor: pointer;
  opacity: 0.8;
}
#zoom-hand:hover {
  opacity: 1;
}

#zoom-minus {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 29px;
  height: 20px;
  cursor: pointer;
}
#zoom-minus:hover {
  background: #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

#zoom-plus {
  position: absolute;
  bottom: 7px;
  left: 6px;
  width: 29px;
  height: 20px;
  cursor: pointer;
}
#zoom-plus:hover {
  background: #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}