/*印刷用css*/
@media print {
	body {
		font-size: 80%;
	}
	#page-wrapper {
		margin: 0;
		padding: 0;
	}

	/*印刷時の余白を除去*/
	@page {
		margin: 0;
	}

	/*非表示箇所に追加*/
	.print-none {
		display: none;
	}
	.form-control {
		height: 30px;
	}
	.dataTables_length {
		display: none;
	}
	.dataTables_filter {
		display: none;
	}
	.dataTables_paginate {
		display: none;
	}
	.btn-toolbar {
		display: none;
	}
	.step-anchor {
		display: none;
	}

	/*aタグのリンク先を非表示*/
	a[href]:after {
		content: "" !important;
	}
	abbr[title]:after {
		content: "" !important;
	}
	/**ボタン枠表示*/
	.btn {
		border-color: #ccc;
	}
	label {
		margin-bottom: 0;
	}
}