/* −−−−−−−−−−共通設定−−−−−−−−−−−− */
/* Anchor設定 */
a		{				/* Anchorデフォルト */
	font-weight:700;
}
a:link		{					/* 下記以外のときのリンク表示 */
	text-decoration: none;
/*	color:#47e */
}
a:visited	{					/* 過去にリンク先を見た時 */
	text-decoration: none;
/*	color:#47e */
}
a:hover		{					/* カーソルを持っていった時 */
	text-decoration: underline;
/*	color:#87e */
}
a:active	{					/* クリックした時 */
	text-decoration: none;
/*	color:#47e */
}

/* Body設定 */
body		{				/* Bodyデフォルト */
	color: #47e;					/* 標準文字色 */
	background-color: #fff;				/* 背景色 */
	font-size: 11pt;				/* 標準設定フォントサイズ */
	text-align: left;				/* 文字表示位置 */
}

/* Image設定 */
img		{				/* Imageデフォルト */
	border-style: none;
}
img.border1	{
	border-style: dotted;
}
img.border2	{
	border-style: dashed;
}

/* Table設定 */
table		{				/* Tableデフォルト */
	
}
table.sp0px	{
	border-spacing: 0px 0px;
}
table.sp5px	{
	border-spacing: 5px 5px;
}
table.sp10px	{
	border-spacing: 10px 10px;
}
table.list	{
	border-spacing: 2px 2px;
}
td		{				/* tdデフォルト */

}
td.bg-blue	{
	background-color: #8bf;
}
td.bg-orange	{
	background-color: #fb8;
}
td.bg-water	{
	background-color: #cef;
}
td.bg-darkblue	{
	background-color: #136;
}
td.bg-red	{
	background-color: #f75;
}
td.list-a	{
	background-color: #fb8;
	color:#fff;
	font-weight: 700;
}
td.list-b	{
	background-color: #cef;
}
td.list-c	{
	background-color: #eff;
}

/* 段落設定 */
div		{
}
div.a		{
	font-size: 13pt;
	font-weight: 700;
}
div.bg-blue	{
	background-color: #8bf;
}
div.bg-water	{
	background-color: #cef;
}

/* 文字サイズ設定 */
h1		{
	font-size: 20pt;
}
h2		{
	font-size: 16pt;
}
h3		{
	font-size: 13pt;
}
h4		{					/* 標準サイズ */
	font-size: 11pt;
}
h5		{
	font-size: 9pt;
}
h6		{
	font-size: 7pt;
}
.size0		{
	font-size: 25pt;
}
.size1		{
	font-size: 20pt;
}
.size2		{
	font-size: 16pt;
}
.size3		{
	font-size: 13pt;
}
.size4		{					/* 標準サイズ */
	font-size: 11pt;
}
.size5		{
	font-size: 9pt;
}
.size6		{
	font-size: 7pt;
}

/* 文字修飾設定 */
b		{					/* 太字 */
	font-weight: 700;
}
i		{					/* 斜体 */
	font-style: italic;
}
.caution	{					/* 警告表示用 */
	color: #f75;
	font-weight: 700;
}

/* 文字位置指定 */
.center		{
	text-align: center;
}
.left		{
	text-align: left;
}
.right		{
	text-align: right;
}

/* 文字色設定 */
.white		{
	color: #fff;
}
.orange		{
	color: #f84;
}
.blue		{
	color: #47e;
}
.darkblue	{
	color: #136;
}
.red	{
	color: #f33;
}

