/* CSS Document */

.popup{
    
    height:100%;
    width: 100%;
    position:fixed;
    top: 0;
    left: 0;
    display: none;
	z-index:999;
}
.center{
    border: 10px solid #121212;
	position:absolute;
    margin: 0 auto;
    width: 750px;
	height:500px;
	z-index:99999;
	left:0;
	right:0;
	background-color:#FFF;
}
.close{
    float: right;
    position: fixed;
    top: 0;
	bottom:0;
	left:0;
	right:0;
	z-index:-99;
	opacity:0.5;
	background:url(../images/lightbox_cloase_btn.png) no-repeat top right #000;
	
	}
