@charset "utf-8";
/* ********************************************************************-

タイトル : print.css
作者 : mersy

概要 : 印刷用のcss

制作日 : 2008/10/1
変更日 : 2008/10/1

- ******************************************************************** */
/*======================================================================

最低限必要な設定

====================================================================== */
/*
heading
----------------------------------------------------------------------*/
body {
	font-size: 12pt;
	color: #000000;
	background:none;
	background-color: #FFFFFF;
}
div#mainArea h2{
	font-size:16pt;
}
div#mainArea h3{
	font-size:14pt;
}
/*
文字サイズをptに変更
モノクロ印刷想定
*/

a:link,
a:visited {
	text-decoration: underline;
	color: #000000;
}
/*
リンク部分にアンダーライン
*/

img {
	border: 0;
}
/*
画像にリンクを貼る際の、画像周りのborderを消しておく。
*/

p.print{
display:none;
}

/*======================================================================

印刷時不必要部分を消す

====================================================================== */
div#subArea,
div#footer,
div#header,
ul#localmenu{
	display:none;
}
/*======================================================================

cssの調整

====================================================================== */
/*
div#container{
	width:902px;
	margin:0 auto;
	text-align:left;
	border-left:1px solid #442f1e;
	border-right:1px solid #442f1e;
	background:#fff;
}
*/
div#container{
	width:95%;
	margin:0 auto;
	text-align:left;
	border:none;
	background:#fff;
}
* html div#container{
width:172mm;
}

/*
div#mainArea{
	float:right;
	width:615px;
	margin-bottom:30px;
	margin-right:55px;
	margin-top:25px;
	display:inline;
}
*/
div#mainArea{
	float:none;
	width:100%;
	margin:0;
	display:block;
}