/*------------------------------------------------------------------
						- Style Sheet -
  ------------------------------------------------------------------
	File Name	:	print.css
	Purpose		:	style sheet for printing
  ------------------------------------------------------------------
	Owner		:	Aakriti Technologies
	Email		:	aakriti.technologies@gmail.com
  ------------------------------------------------------------------
	Modification History : Change log								
  ------------------------------------------------------------------
	Date		Change Code		Programmer Name		QA Checker	
  ------------------------------------------------------------------
	12/29/20	*INIT*			Gaurav Gupta		F.llllllllllll
	   DESC:	New Implementaion	 
  ------------------------------------------------------------------*/	

	
.pageA4-72dpi { 
	width: 595px;
	/*height: 842px;*/
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.pageA4-96dpi { 
	width: 794px;
	/*height: 1080px;*/
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.pagebreak { 
	clear: both;
	page-break-after: always;
} 

/* CSS styling for before/after/avoid. */
.before {
	padding:10px 0px 0px 0px; 
	page-break-before: always;
}
.after {
	padding:10px 0px 0px 0px; 
	page-break-after: always;
}
.avoid {
	page-break-inside: avoid;
}
	
@media print { 
	.printEl { 
        width: 8.5in;
        height: 11in;
    }
		
	img { 
		max-width:100% !important;
	} 
}