<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*印刷用レイアウトを指定、A4用紙に対応。
背景は印刷されない。
class textのあとで強制改ページする。
print.css（この文書）では、画面表示レイアウトを指定。

ほかの詳細は、同じフォルダー内のscreen.cssを参照のこと。
*/

body{
	font-family:serif;
	font-size:12pt;
	}

h1{
	font-size:14pt;
}

h2{
	font-size:12pt;
}

h3{
	font-size:12pt;
}

h4{
	font-size:10pt;
	text-align:right;
}

p{
	text-align:left;
	text-indent:1em;
}

h5{
	font-size:9pt;
}


h6{
	visibility:hidden;
}

a{
	text-decoration:none;
	color:black;
}

.text{
 	text-align:center;
	font-size:10pt;
	margin-left:auto;
	margin-right:auto;
 	padding:10px;
	font-family:serif;
	color:black;
	page-break-after:always;
}

.italic{
	font-style:italic;
}</pre></body></html>