/* Marker window */
#markerWindow {
  background: #fff;
  position: absolute;
  z-index: 200;

  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  /* hide by default */
  display: none;
}

#markerWindowHeader p, #markerWindowFooter p {
  font-size: 80%;
  margin: 0;
  text-align: left;
  width: 128px;
}

#markerWindowHeader p {
  padding: 10px 0 10px 35px;
  font-weight: bold;
}

#markerWindowFooter div {
  margin: 10px 0 10px 0;
}

#markerWindowFooter p {
  margin: 3px auto 3px auto;
}

#markerWindowHeader {
  width: 100%;
  min-height: 25px;
}

#markerWindowHeader #markerWindowClose {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  background: url('/images/markers/close_button.png');
}

#markerWindowHeader #markerWindowClose:hover {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  background: url('/images/markers/close_button.hover.png');
  text-decoration: none;
}

#markerWindowFooter {
  position: relative;
  min-height: 40px;
  clear: both;
}

#markerWindowFooter p img, #markerWindowFooter p .pro_badge img {
  margin-bottom: -3px !important;
}

#markerWindowMain {
  min-height: 128px;
  height: 128px;
  margin: 0 auto;
}

/* Multi + Single image views. These will be toggled based on number of images in the clump */

/* Only one image displayed */
.markerWindowSingle {
  width: 200px;
}

.markerWindowSingle #markerWindowMainImage {
  width: 100%;
}

.markerWindowSingle #markerWindowMainImage img {
  display: block;
  margin: 0 auto;
  width: 128px;
  height: 128px;

  border:1px solid #fff;

  -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.5);
  -moz-box-shadow:    0px 0px 5px rgba(50, 50, 50, 0.5);
  box-shadow:         0px 0px 5px rgba(50, 50, 50, 0.5);
}