#pop-overlay {
	    z-index:1;
	    position: fixed;
	    display:none;
	    height:100%;
	    width:100%;
	    background:#000000;
	    top:0px;
	    left:0px;
		cursor: pointer;
	}
#pop-body {
	    background: none repeat scroll 0 0 #fff8e7;
	    border-radius: 10px 10px 10px 10px;
		border:2px solid #efdecd; 
	    color: #333333;
	    display: none;
	    font-size: 14px;
	    left:50%;
	    position: fixed;
	    top: 10%;
	    z-index: 2;
		width:700px;
		margin-left:-361px;
		/*height:600px;*/
		
	}
#pop-close {
	    background: url("../images/close.png") no-repeat center transparent;
        cursor: pointer;
	    height: 30px;
	    position: absolute;
	    right:0;
	    top:0;
	    width: 30px;
	}
#pop-title {padding:5px 15px 5px 0; position:absolute; top:0; left:15px;}
#pop-content {margin:35px 7px 10px 15px; overflow:hidden;}
#pop-content p {margin-bottom:10px;}