/*
print.css
------------------------------------------------------------------
スタイルシート：印刷用→常用
*/

body					/* bodyのフォントサイズ */
	{
	font-size		: small;		/* フォントサイズを相対指定 */
	line-height	: 1.1em;		/* 行間を相対指定 */
	}
body *					/* bodyから継承する属性を明記 */
	{
	font-size		: 100%;
	line-height	: 1.1em;
	}
*:link,*:visited,*:active,*:hover,*:focus,*.a:link,*.a:visited		/* ハイパーリンクを普通の文字に変換 */
	{
	color		: black;
	background-color	: transparent;
	text-decoration	: none;
	font-weight	: inherit;
	border		: none;
	}
/*
------------------------------------------------------------------
css共通領域
*/
*.screenonly				/* コンピュータ画面のみ表示 */
	{
	display		: none;
	}


*.printonly				/* 印刷のみ表示 */
	{
	display		: inherit;
	}
