@charset "UTF-8";
#mask{ 
	position:absolute; /* important */
	top:0px; /* start from top */
	left:0px; /* start from left */
	min-height:100%; /* cover the whole page */
	width:100%;  /* cover the whole page */
	display:none; /* don't show it '*/
	z-index:9000000;
	
	/* styling */
	background-color: #f7f5ee; 
	border:none;
}

.modal_window{
	position:absolute; /* important so we can position it on center later */
	display:none; /* don't show it */
	z-index:9000001;
	
	/* styling */
	width:65%;max-height:560px; overflow:auto;background:#fff;color:#333;border:3px solid #ddd;padding:10px;border-radius: 16px;-moz-border-radius: 16px;-webkit-border-radius: 16px;
}

.close_modal {font-size:xx-small;border:1px solid #1252a3;padding:3px;text-decoration:none;float:right}
.print_modal {float:right; margin-right:10px;}
#alertFrame {border:none; width:100%; height:540px; background:#fff;}