#MyPopup {
  display:none;  
}

.overlay::before,
.overlay .autopop {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
}
.overlay::before {
  content: "";
  background: rgba(0, 0, 0, .8);
  display: block;
  z-index: 99990;
}
.overlay .autopop {
  width: 300px;
  height: 250px;
  margin: auto;
  background: #fff;
  z-index: 99999;
	text-align:center;
	background: #fff;
	padding: 10px;
}
.overlay:target::before {
  display: none;
}
.autopop .a-content {
  height: 100%;
  overflow: hidden;
  padding: 0 0px;
}
.autopop .close {
	color: #fff !important;
	background: #B9775F;
	padding: 5px 10px;
	position: absolute;
	right: 0;
	top: 0;
    font-family: arial;
    font-size: 12pt;
	cursor: pointer;
    text-decoration: none;
}