/*CSS para impressão*/
@media print {
	body{
		max-width: 800px !important;
		padding:0;
		margin:0;
	}
	.panel-heading{
		display: none;
	}
}
@page{
   size: auto;   /* auto is the initial value */
   margin: 0mm;  /* this affects the margin in the printer settings */
}

