/* Print */
@media all {
	.page-break	{ display: none; }
}
@media print {
	
	.page-break {
      page-break-after: always;
      page-break-inside: avoid;
      clear:both;
    }
    .page-break-before {
      page-break-before: always;
      page-break-inside: avoid;
      clear:both;
    }
	
	@page  
	{ 
	    margin: 50mm 25mm 50mm 25mm;  
	} 
	
	body  
	{ 
		overflow: visible;
	} 
	
	.page-heading {
		width: 100%;
		display: block;
		text-align: center;
	}

	li, p, h2 {
		display: table;
		page-break-inside: always;
    }

	#visaInfoPrintDocument {
		display: block;
		overflow: visible;
	}
	
	#visaInfoPrintDocument div { overflow: hidden; }
    
    #result-link {
    	display: none;
    }
    
    #visaInfoPrintButtonContainer {
        display: none;
    }
}