<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ==================================================================
	Author: adachi(WebBlending)

	■印刷用のCSSの指定が必要な場合に使用。
	
=================================================================== */

/* =================================
   ■ 共通指定
================================== */

body{
	overflow-y:visible;
}

/* --------------------------------
   □ 強制改行
-------------------------------- */ 
/* firefox対策 */
html[xmlns]&gt;/**/body hr.printfix {
	display:block;
	background:#fff;
	border:1px solid #fff;
	page-break-after:always;
}
	
html[xmlns]&gt;/**/body #bottom:after{
	content:".";
	height:0;
	clear:both;
	display:block;
	visibility:hidden;
}

/* opera */
*+html:first-child body hr.printfix {
	display:none;
}
</pre></body></html>