@charset "utf-8";

/* --------------------------------
*
* print.css 印刷用css
*
* --------------------------------- */

body {
	background: #fff;
	font-size: 10pt;
	line-height: 15pt;
	color: #222
}

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

/*--- リンク先を表示 ---*/
a[href]:after {
	content: " （URI ： "attr(href)" ）";
	font-size: 9pt;
}

/*--- 略語・title表示 ---*/
abbr:after {
	content: " （"attr(title)"） ";
}

/* ------　見出し設定 ------- */
.entryTitle {
	margin: 0;
	padding: 0;
	font: normal bold 14pt /20pt sans-serif;
	background: url("../image/print_headline_bg.png") left bottom repeat-x;
}

.entryDate {
	margin: 0;
	padding: 0;
	font: normal bold 10pt /15pt sasns-serif;
	text-align: right;
}

/* ------　本文設定 ------- */
p {
	margin-bottom: 1em;
	text-indent: 1em;
	color: #222;
}


/* ------　定義リスト ------- */
dt {
	background: url("../image/print_icon_plastics.png") 0 40% no-repeat;
	padding-left: 14px;
}

dd {
	margin: 0.25em 0 1em 1em;
}

/* ---　会話 --- */
dl.talk {
	margin-bottom: 1em;
	padding: 50px 10px 1px;
	background: #eee url("../image/icon_talk.png") 10px 10px no-repeat;
}

dl.talk dt { /* 発言者 */
	float: left;
	width: 7em;
	background: transparent none; /* dt(default)の背景画像を消す */
}

dl.talk dt:after {
	content: "：";
}

dl.talk dd { /* 発言内容 */
	margin: 0 0 0.5em 8em;
}

/* --- 追記 --- */
ins {
	display: block;
	margin: 1em 0;
	padding: 50px 10px 1px;
	text-decoration: none;
	background: #eee url("../image/icon_text.png") 10px 10px no-repeat;
}

ins:before {
	display: inline-block;
	padding-bottom: 0.25em;
	content: "追記："attr(datetime)"";
	text-align: center;
	font-size: 9pt;
}

/* --- 引用 --- */
blockquote {
	display: block;
	margin: 1em 0;
	padding: 50px 10px 1px;
	text-decoration: none;
	background: #eee url("../image/icon_doc.png") 10px 10px no-repeat;
}

blockquote:before {
	display: inline-block;
	padding-bottom: 0.25em;
	content: ""attr(title)" より引用";
	text-align: center;
	font-size: 9pt;
}

/* --- 整形済テキスト --- */
pre {
	overflow: scroll;
	background: #eee;
	padding: 0 1em;
	font: normal normal 100% /1.3 Monaco, "Lucida Console", mono;
}

address {
	padding-top: 1em;
	font: normal bold 8pt /1.4 Optima, "Trebuchet MS", sans-serif;
	background: url("../image/print_headline_bg.png") left top repeat-x;
	text-align: center;
}


/* ----- 印刷時　非表示設定 ----- */
div#nav,
ul#breadcrumbs,
p.pageTop,
div#sub {
	display: none;
}


