/* ********************************************************************** */
	/* フォントタイプCSS			 */ /* 	.	クラス	 */ /* 	#	ID		 */
	/* ********************************************************************** */
	/* 文字コード */
 @charset "utf-8";

/* body */
body {
	width: 800px;
	background: #dddddd;
	color: #000000;
	font-family: Century, arial, "ＭＳ Ｐゴシック", "Osaka";
	font-size: small;
}

/* リンク */
a {
	color: #F60;
	font-family: Century, arial, "ＭＳ Ｐゴシック", "Osaka";
	text-decoration: underline;
	background: none;
}

/* 見出し */
h1,h2,h3 {
	background: #ccc;
	border-bottom: 1px solid #F60;
	font-family: 　arial, "ＭＳ Ｐゴシック", "Osaka";
	z-index: 3;
}

h1 {
	font-size: large;
	margin-left: 5px;
}

h2 {
	font-size: medium;
	margin-left: 10px;
}

h3 {
	font-size: small;
	margin-left: 15px;
}

/* リスト */
ul {
	list-style-type: disc;
}

/* 用語定義 */
dt {
	margin: 5px;
}

/* 引用 */
blockquote {
	background: #eee;
	color: #333;
	margin: 5px;
	padding: 5px;
	border: 1px dashed gray;
}