html {     background: url(about:blank)  no-repeat;     background-attachment: fixed; } 
.PopUpMenu
{
	position:absolute; 
	left:0; 
	top:0; 
	z-index:10000; 
	border: solid 1px black;
}
.PopUpMenu > table
{
	background-color: white; 
	width: 100%; 
	border-left: solid 2px white; 
	border-right: solid 2px white; 
	visibility: inherit;
}
.PopUpMenu a:hover 
{
	color: #000;
}
.popup-box {
	position: fixed;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #fff;
	display: none;
	-moz-box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
	box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
	/*font-family: Arial, sans-serif;*/
	z-index: 99991;
	/*font-size: 14px;*/
	padding: 5px;
	/*overflow: hidden;*/
	box-sizing: border-box;
}
.popup-box > div {
	background-color: white; 
	width: 100%; 
	border: solid 1px black; 
	padding: 1px; 
	visibility: inherit;
	overflow: hidden;
}
.popup-box .popup-box-close {
	position: absolute;
	top: 0px;
	right: 0px;
	font-family: Arial, Helvetica, sans-serif;	
	font-weight: bold;
	cursor: pointer;
	color: #434343;
	padding: 12px;
	font-size: 20px;
    color : red;
}

.popup-box .popup-box-close:hover {
	color: #000;
}

.popup-box h2 {
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
.popup-box .popup-box-top {
        background: url(/img/popup_title_bg.png) repeat;
        padding: 11px 20px;
        color: white;
        font-weight: bold;
        font-size: 12px;
        cursor: move;
}

.popup-box .body {
	/*background: #eee;*/
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 10px;
	border-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	font-size: 12px;
	overflow: hidden;
}
.popup-box .bottom {
	background: #eee;
	border-top: 1px solid #e5e5e5;
	padding: 1em;
	border-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
}