@charset "utf-8";

@import url("./default.css");

/*

page-break-before･････印刷の改ページ箇所を指定する
	auto：特にその位置での改ページを指定しません。
	always：その位置で強制的に改ページさせます。
	avoid：その位置での改ページを禁止します。

*/

body {
	color: #000;
	background-color: #fff;
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	margin: 1em 0;
	page-break-after: avoid;
}

h1 {
	margin: 0 0 1em 0;
	padding: 0;
}

table tr, ul, ol {
	page-break-inside: avoid;
}

a {
	text-decoration:none;
	color:#000000;
}

div#header, div#right-column, div#footer, fieldset#comment-form, div.go-top {
	display: none;
}

div#logo { margin-bottom: 1em; }
