@media print {

	@page {
	    size: auto;   /* auto is the initial value */
	    margin: 0;  /* this affects the margin in the printer settings */
	}

	body {
		padding: 0px;
	}

	#sidebar {
		display: none;
	}

	.content {
	    margin-left: 0px;
	    padding: 0px;
	}

	.panel-heading {
		display: none;
	}

	a.label, a.btn {
		display: none;
	}

	.page-header-fixed {
		padding: 0px;
	}

	table {page-break-after: always;}

}