@charset "UTF-8";
/* update: 2007-09-19 */

/**********************************************************
 *  Font settings
 *********************************************************/
/*
英数字はプロポーショナルでないと読みにくくて仕方がないが、
日本語文字は等幅である方が美しい。
メイリオ(Win)、ヒラギノ角ゴ(Mac)は
日本語が等幅で英数字はプロポーショナルなので（たぶん）、
それらがあれば優先的に採用。
無い場合は、まずプロポーショナルな英数字用フォントを指定し、
その後で等幅日本語フォントを指定する。
すると、英数字はプロポーショナルなフォントになるが
その他＝日本語文字は等幅フォントにフォールバックされる。
また印刷時には同じような基準で、ただし明朝体のフォントを選択している。
*/
@media screen {
	body {
		font-family:
			"メイリオ",
			"ヒラギノ角ゴ Pro W3",
			"Helvetica", "Arial", "Bitstream Vera Sans"
			"IPA ゴシック",
			"ＭＳ ゴシック",
			sans-serif;
	}
	pre, .code {
		font-family:
			"Consolas",
			"Courier New",
			"Monaco",
			"Bitstream Vera Sans Mono",
			monospace;
	}
}
@media print {
	body {
		font-family:
			"ヒラギノ明朝 Pro W3",
			"Times New Roman", "Bitstream Vera Serif", "Times"
			"IPA 明朝",
			"ＭＳ 明朝",
			sans-serif;
	}
	pre, .code {
		font-family:
			"Consolas",
			"Courier New",
			"Monaco",
			"Bitstream Vera Sans Mono",
			monospace;
	}
}


/**********************************************************
 *  General styles
 *********************************************************/
img				{ border: 0; }
tt, code		{ font-size:1em; }
form			{ margin:0 }


/**********************************************************
                        Page Common
**********************************************************/

/****************************
       Body
****************************/
body {
	padding-left: 13pt;
	color: black;
	background-color: white;
	max-width: 800px;
}


/****************************
       Footer
****************************/
.footer {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 3px double #88ACD5/*勿忘草色*/;
	text-align: right;
	clear: right;
}
.footer hr {
	display:none;
}

/****************************
       Headers
****************************/
h1 {
	margin: 0;
}
#IndexPage  h1 {
	white-space: nowrap;
}
#IndexPage  h1  .page_title {
	position: relative;
	font-style: normal;
	font-weight: bold;
	font-family: "Bitstream Vera Sans", sans-serif;
	font-size: 38pt;
}
#IndexPage  h1  .hyphen {
	display: none;
}
#IndexPage  h1  .sub_title {
	position: relative;
	left: -128pt;
	top: 18pt;
	font-size: 18pt;
	font-style: italic;
	font-weight: normal;
	font-family: "Bitstream Vera Serif", serif;
}
h2, h3, h4, h5, h6 {
	margin: 1.5em 0 0.3em;
	margin-left: 16pt;
	clear: right;
}

li h3, li h4, li h5, li h6 {
	margin-left: 0;
}

h2 {
	margin-left: 0;
	padding: 0.2em 16pt 0.1em;
	line-height: 1.2em;
	background: #AACEF7/*勿忘草色 + #222*/;
	color: inherit;
}

h3 {
	font-weight: bold;
	line-height: 1.2em;
	border-bottom: 2px solid #88ACD5/*勿忘草色*/;
	color: inherit;
}

/****************************
       Paragraph
****************************/
p {
	margin: 0;
	margin-bottom: 0.6em;
	margin-left: 16pt;
}
table  p,  ul  p,  ol  p {
	margin-left: 0;
}
p.note {
	font-size: 0.8em;
}


/****************************
       Lists
****************************/
ul, ol, dl {
	margin-top: 0;
	margin-bottom: 0.6em;
}
ul, ol {
	padding-left: 32pt;
	margin-left: 16pt;
}
dl {
	padding-left: 0pt;
	margin-left: 16pt;
}
li, dd {
	line-height: 1.5em;
}


/****************************
       Table
****************************/
table.bordered_table {
	border-collapse: collapse;
	margin-top: 1px;
	margin-bottom: 3px;
	margin-left: 16pt;
}
table.bordered_table th,  table.bordered_table td {
	padding: 4px 6px;
	border: 1px solid #666;
}
table.bordered_table  th {
	white-space: nowrap;
	background: #BCC8DB;/*秘色*/
	font-weight: normal;
	color: inherit;
}
form  table.layout {
	border-collapse: collapse;
}
form  table.layout  td {
	vertical-align: top;
}

/****************************
       Code block
****************************/
p.code {
	padding: 6px 4px 5px;
	margin-top: 0.6em;
	margin-bottom: 0.6em;
}
.code {
	font-size: 0.9em;
	line-height: 1em;
	border-top: 1px solid silver;
	border-bottom: 1px solid silver;
}
.code  .comment {
	color: #008000;
	background-color: inherit;
}


/****************************
       miscellaneous
****************************/
.note {
	font-size: 0.8em
}
div.floated_image {
	display: inline;
}
div.floated_image img {
	margin: 4px;
	margin-left: 8px;
	float: right;
	clear: both;
}
