/*
下のうちどれか1行を宣言すること。
これによって、どの言語の文章を表示するか、が決まります。
@import url("bcb.css");
@import url("delphi.css");
@import url("vb.css");
*/

@import url("delphi.css");

/*
画面表示の体裁はこの css file で指定しています。
<p>本文</p>             : p{} で体裁を指定
<p class="abc">本文</p> : p.abc{} で体裁を指定
*/

/* 章 */
h1{
	text-align: center;
	margin: 1em 1em;
	padding: 0.2em 0.5em;
	background: rgb(34, 34, 102);
	color: White;
	font-size: 28pt;
	font: ＭＳ Ｐゴシック, Times;
}

/* 節 */
h2{
	text-align: left;
	padding: 0.2em 0.5em;
	background: rgb(221, 221, 255);
	color: Green;
	font-size: 20pt;
	font: ＭＳ Ｐゴシック, Times;
}

/* 練習問題・基礎課題・応用課題・発展課題 */
div.exercise h3{
	text-align: left;
	padding: 0.2em 0.5em;
	color: Blue;
	border-style: solid;
	border-width: thin;
	border-color: rgb(153, 153, 153);
	margin-left: 2em;
	margin-right: 2em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-size: 16pt;
	font: bold ＭＳ Ｐゴシック, Times;
}

h3{
	text-align: left;
	color: Purple;
	font-size: 14pt;
}

h4{
	background-color: rgb(255, 206, 221);
	color: rgb(0, 49, 34);
	font-size: 15pt;
	font: bold;
	padding: 0.1em 0.5em;
}

/* 複数行の program code */
pre.source{
	color: rgb(153, 0, 0);
	font-family: "Courier New", monospace;
	padding: 0em 0em 0em 4em;
}

/* 中央寄せ */
div.center{
	text-align: center;
}

/* 各 pages の navigation header/footer */
div.navi{
	text-align: center;
	font-size: smaller;
	background-color: rgb(224, 255, 224);
}

*.showbox{
	border-style: dotted;
	border-width: thin;
	padding-left: 1em;
	margin: 0.5em;
}

/* columns */
div.column{
	background-color: rgb(225, 255, 255);
	border-style: double;
	border-width: thick;
	padding: 1em;
}

/* columns 内の見出し */
div.column h3{
	border-style: none;
	text-align: center;
	color: red;
}

/* 基礎課題・応用課題・練習問題 */
div.exercise{
	background-color: rgb(248, 255, 224);
	padding: 1em;
	margin: 0.5em;
}

/* code 片 */
code{
	color: rgb(153, 0, 0);
	font-family: "Courier New", monospace;
}

span.source{
	color: rgb(153, 0, 0);
	font-family: "Courier New", monospace;
}

/* 変更された部分 */
*.changed{
	text-decoration: underline;
	background-color: rgb(235, 230, 255);
}

/* 強調 */
em{
	font-weight: bold;
	font-style: normal;
}

/* 「注意」表示 */
em.caution{
	border-color: blue;
	border-style: solid;
	border-width: thin;
	font-size: larger;
	font-style: normal;
	font-weight: bold;
}

/* 画像の右寄せ */
.right{
	float: right;
}

/* 画像の左寄せ */
.left{
	float: left;
}

/* その場所までの sample code */
p.download{
	text-align: center;
	border-style: solid;
	border-width: thin;
	border-color: red;
	background: rgb(250, 193, 250);
	margin-left: 6em;
	margin-right: 6em;
}

/* 解答書き込み空間が必要な段落 */
p.withspace{
	margin-bottom: 4em;
}

