.ebox {
  display: none;
  position: fixed;
  z-index: 9901;
  width: 90%;
  max-width: 1100px;
  overflow: auto;
  background: #fff;
  color: #000;
  /* border-radius: 4px; */
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.8);
  /* border: 9px solid rgba(0, 0, 0, 0.1); */
  background-clip: padding-box;
}
@media (min-width: 32em) {
	.ebox { width: 70%; }
}
.ebox .ebody { 
	padding: 2em 1.5em; 
}

.eoverlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85) !important;
}

a.eboxclose{
    float:right;
    margin-top:2px;
    margin-right:2px;
    cursor:pointer;
    color: #fff;
    border-radius: 30px;
    background: #605F61;
	font-family: Arial, serif;
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    line-height: 1px;
    padding: 11px 3px;     
	z-index:1001;	
}

.eboxclose:before {
    content: "×";
}
