@charset "EUC-JP";


.print_page {
	width: 172mm; /*A4縦の幅*/
	height: 251mm; /*A4縦の高さ*/
	page-break-after: always; /*各ページの終わりに改ページ*/
	position: relative;
}

.print_page:last-child {
	page-break-after: auto; /*最後のページは改ページなし*/
}

.print_page:before {
	position: absolute;
	right: 0;
	top: 0;
/*
	content: "Asial CSS Print Demo";
*/
}

.print_page:after {
	position: absolute;
	right: 0;
	bottom: 0;
/*
	content: counter(print_page_count);
*/
}

