#MPfullBlock {
	position: fixed; 
	top: 0; 
	left: 0; 
	margin: 0; 
	width: 100%; 
	height: 100%;
	background-color: rgba(255,255,255,0.9);
	display: none;
	z-index: 10000000000;
	
}

#MPmessageBlock {
	width: 500px;
	min-height: 50px;
	display: block;
	background-color: #fff;
	border: 1px solid #bbb;
	position: fixed;
	left: 50%;
	top: -150px;
	margin-left: -250px;

}

#MPheader {background: #e2e2e2;
background: -moz-linear-gradient(top,  #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%);
background: -webkit-linear-gradient(top,  #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
background: linear-gradient(to bottom,  #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 );
 color: white; float: left; width: 100%; padding: 5px 10px; font-weight: bold; text-align: right;}
#MPbuttons {float: left; width: 100%;}

#MPiconPart {
	width: 80px;
	height: 100%;
	display: block;
	color: black;
	right: 0; 
	top: 0;
	font-size: 12pt;
	padding: 25px 0px 25px 15px;
	position: relative;
	float: left;
	display: flex;
    align-items: center; 
}

#MPtextPart {
	width: 410px;
	min-height: 100%;
	color: black;
	float: right;
	position: relative;
	font-size: 12pt;
	padding: 25px;
	word-wrap:break-word;
}

#MPtextPart span{
	width: 100%;
	word-wrap:break-word;
	float: left;
	}
	
#MPbuttonOK, #MPbuttonCancel{
	color: #888;
	padding: 0px;
	float: left;
	margin-top: 15px;
	cursor: pointer;
	transition: 0.2s;
	margin-right: 10px;
	}
	
		
#MPbuttonOK:hover ,#MPbuttonCancel:hover{
	color: white;
	background-color: #ddd;
	}
	
#MPprogressData {font-size: 20pt; font-weight: bold; width: 100%; float: left;}

#MPprogressBar {height: 25px; float: left; width: 100%; border: 1px solid #888; display: block;}
#MPprogressBar div {
	height: 100%; 
	width: 0%;     
	background: #1e5799;
    background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#7db9e8));
    background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
}