@charset "utf-8";
/* CSS Document */

/* Dim the background behind the close button */ 
div#popBackground {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
	z-index: 100000;
}
/* Position the Popup */ 
div#pop, div#pop1, div#pop2, div#pop3, div#pop4 {
	position: absolute;
	top: 140px;
	left: 50%;
	width: 920px; /* Change width as needed */
	height: auto; /* Height expands with content */
	margin-left: -460px; /* Divide width by 2 and add left padding to center the div using a negative left margin */ 
	z-index: 100001;
	background-color: #fff;
}
/* Position the close button */ 
div#pop embed, div#pop object, div#pop1 embed, div#pop1 object, div#pop2 embed, div#pop2 object, div#pop3 embed, div#pop3 object {
	z-index: 15;
	position: absolute;
}
/* Position the close button */ 
div#pop img.close, div#pop1 img.close, div#pop2 img.close, div#pop3 img.close, div#pop4 img.close {
	position: absolute;
	top: -10px;
	right: -10px;
	cursor: pointer;
	z-index: 100003;
}
/* div#pop span {
	position: absolute;
	top: -2px;
	right: 24px;
	text-align: right;
	cursor: pointer;
	z-index: 100003;
	color: #666;
	font-size: 14px;
	font-weight: bold;
} */

/* Show/hide the popup */
.none {
	display: none;	
}
.block {
	display: block;	
}