@charset "utf-8";

#modalWindow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

* html #modalWindow {
  position: absolute !important;
}

#modalContents {
  display: none;
  position: fixed;
  z-index: 10001;
  margin-bottom: 30px;
  width: 868px;
  background: #FFFFFF;
}
* html #modalContents {
  position: absolute !important;
}

#modalContents #modalClose {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 123px;
}
* html #modalContents #modalClose {
  position: static;
  margin: 0 20px 0 auto;
}

#modalContents #contents {
  float: none;
  margin: 0 0 30px;
  width: auto;
}
