/* apply to anchors to show zoom-cursor */
.highslide {
  cursor: url(highslide_zoomin.gif), pointer;
  outline: none;
}
/* hide thumbnail during expand */
.highslide-active-anchor img {
  visibility: hidden;
}
/* thumbnail image */
.highslide img {
  border: 2px solid gray;
}
/* thumbnail image (hover) */
.highslide:hover img {
  border: 2px solid white;
}
/* default wrapper class name */
.highslide-wrapper {
  background: white;
}
/* content for display with highslide */
.highslide-html-content {
  position: absolute;
  display: none;
}
/* expanded image */
.highslide-image {
  border: 10px solid white;
}
/* expanded image (blurred) */
.highslide-image-blur {
}
/* expander caption */
.highslide-caption {
  display: none;
  border: 5px solid white;
  border-top: none;
  padding: 5px;
  background-color: white;
}
/* lightbox dimming effect */
.highslide-dimming {
  background: black;
  position: absolute;
  width: 100%;
  visibility: hidden;
}
/* loading ... */
.highslide-loading {
  display: block;
  color: black;
  font-size: 8pt;
  font-family: sans-serif;
  font-weight: bold;
  text-decoration: none;
  padding: 2px;
  border: 1px solid black;
  background-color: white;
  padding-left: 22px;
  background-image: url(highslide_loader.white.gif);
  background-repeat: no-repeat;
  background-position: 3px 1px;
}
/* credits */
a.highslide-credits,
a.highslide-credits i {
  padding: 2px;
  color: silver;
  text-decoration: none;
  font-size: 10px;
}
a.highslide-credits:hover,
a.highslide-credits:hover i {
  color: white;
  background-color: gray;
}
/* move cursor */
.highslide-move {
  cursor: move;
}
/* resize cursor */
.highslide-resize {
  cursor: nw-resize;
}
/* full expand */
a.highslide-full-expand {
  background: url(highslide_fullexpand.gif) no-repeat;
  display: block;
  margin: 0 10px 10px 0;
  width: 34px;
  height: 34px;
}
/* custom overlay */
.highslide-overlay {
  display: none;
}
/* These must always be last */
.highslide-display-block {
  display: block;
}
.highslide-display-none {
  display: none;
}
