 /*new print classes*/
#Print {
	display: none;
}

.pr {
	display: table;
	width: 95%;
	margin: auto;
	text-align: center;
}

.pr-row {
        display:flex; 
	justify-content:space-between; 
	padding:4px 0; 
	border-bottom:1px dotted #aaa; 
	margin-top: 5px;
    	margin-bottom: 5px;
	padding-left: 0px;
	font-size: 12px;
}

.pr-h {
	position: relative;
	display: inline-block;
    	min-width:225px;
	font-size: 12px;
	font-weight: bold;
}
.pr-sp {
	position: absolute;
    	display: inline-block;
    	top: 30%;
    	left: 30%;
}

.pr-i {
    	margin:5px;
    	max-height:35vh;
    	max-width:35vw;
}

.pr-l {
    	min-width: 200px;
    	float: left;
    	text-align: left;
    	font-weight: bold;
}

.pr-r {
    	float: left;
    	text-align: left;
}
.pr-d {
    	margin: 5px;
   	text-align: center;
    	padding-left: 0px;
    	font-size: 12px;
    	color: grey;
}


@media print {
	@page { size: A4; margin: 12mm; }

	#app *, #npage * {
		display:none !important;
	}

	html, body * {
		visibility: hidden;
	}

	#Print, #Print * {
		visibility: visible;
	}

	#Print {
		display: block !important;
		position: static;
		height: auto;
		width: 100%;
		left: 0;
		top: 0;
	}
	.pr-h {
		font-size: 16px;
	}
    	.pr-i {
        	max-height: 550px;
		max-width: 435px;
    	}
   	 .pr-r {
        	font-size: 16px;
    	}
	.pr-l {
        	font-size: 16px;
    	}
}