.pbox {
  display: none;
  position: fixed;
  z-index: 1000;
  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) {
	.pbox { width: 70%; }
}
.pbox .pbody { 
	padding: 2em 1.5em; 
}

.poverlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85) !important;
}

a.pboxclose{
    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;	
}

.pboxclose:before {
    content: "×";
}
