/*------------------------------------------popup-------------------------------------------------*/
#dialog-overlay {

	/* set it to fill the whil screen */
	width:100%; 
	height:100%;
	
	/* transparency for different browsers */
	filter:alpha(opacity=50); 
	-moz-opacity:0.5; 
	-khtml-opacity: 0.5; 
	opacity: 0.5; 
	background:#000; 

	/* make sure it appear behind the dialog box but above everything else */
	position:absolute; 
	top:0; left:0; 
	z-index:3000; 

	/* hide it by default */
	display:none;
}


#dialog-box {
	width:715px;
	height:478px;
	
	/* make sure it has the highest z-index */
	position:fixed; 
	z-index:5000;
	left:50% !important;
	top:50% !important;
	margin-left:-357px !important;
	margin-top:-239px !important;

	/* hide it by default */
	display:none;
}


a.button {
	/* styles for button */
	position:absolute;
	display: block;
	background:url(../images/close.jpg) no-repeat left top;
	right:-49px;
	top:0px;
	width:49px;
	height:50px;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	z-index:9999;
	}
