/* wdcontrol */
@media print {
  .wdcontrol {
    display: none !important;
  }
}
.wdcontrol {
  padding: 5px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}
.wdcontrol .frame {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 6px;
  border: 1px solid #717B87;
  border-radius: 2px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px 0px;
}
.wdcontrol .frame > .close,
.wdinfowindow > .bubble > .close {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  opacity: 0.5;
  background-image: url('images/close.png');
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.wdcontrol .frame > .close:hover,
.wdinfowindow > .bubble > .close:hover {
  opacity: 1.0;
}

/* wdbutton */
.wdbutton,
a.wdbutton {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #717B87;
  background: #f8f8f8;
  cursor: pointer;
}
.wdbutton:hover {
  background-color: #f0f0f0;
  background-image: url('svg_gradient.php?from=ffffff&to=e6e6e6');
  background-image: -webkit-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230));
  background-image: -moz-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230));
  background-image: -ms-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230));
  background-image: linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230));
}
.wdbutton.down,
.wdbutton:active {
  background-color: #e0e0e0;
  background-image: url('svg_gradient.php?from=e6e6e6&to=ffffff');
  background-image: -webkit-linear-gradient(top, rgb(230, 230, 230), rgb(255, 255, 255));
  background-image: -moz-linear-gradient(top, rgb(230, 230, 230), rgb(255, 255, 255));
  background-image: -ms-linear-gradient(top, rgb(230, 230, 230), rgb(255, 255, 255));
  background-image: linear-gradient(top, rgb(230, 230, 230), rgb(255, 255, 255));
}
.wdbutton.down {
  font-weight: bold;
}
.wdbutton.disabled,
.wdbutton.disabled:hover {
  background: #f8f8f8;
  color: #999999;
}

/* EOF */