/*Popup Window*/
		#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#000;
  display:none;
}  
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:900px;
  height:500px;
  display:none;
  z-index:9999;
  padding:20px;
}
#boxes #dialog {
  width:1000px; 
  height:600px;
  padding:10px;
  background-color:#ffffff;
  opacity: 1;
}
			.closex {
			position:absolute;
			color:#FF0000;
			font-weight:bold;
			text-decoration:none;
			font-size: 67PX !important;
			right: 0;
			top: 0;
			z-index:9000;
			margin-top: -20px;
			}
					
			.modal_popup_back {
    background-color: rgba(0,0,0,0.4);
    opacity: 1;
    display: none;
    z-index: 1000;
    width: 100%;
    height: 100%;
    position: fixed;
    margin-top: -936px;
    bottom: 0;
    margin-left: -31px;
}

.modal_popup {
    opacity: 1;
    background-color: white;
    border-radius: 8px 9px;
    color: black;
    position: fixed;
    padding: 10px;
    margin: 0 auto;
    overflow-y: scroll;
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}
.close {
    /* Position it in the top right corner outside of the modal */
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/*End Popup Window*/
