/*-------------------------------------------------------------
|  共通部
-------------------------------------------------------------*/
/*-- リンク  --*/
a
{
	color: #426DB3;
}

a:link,
a:visited
{
	text-decoration: underline;
}

a:hover,
a:active
{
	text-decoration: none;
}


/*-- クリア  --*/
div.clear
{
	clear: both;
}

div.space
{
	font-size: 1px;
	line-height: 1px;
}

/*-- 行揃え  --*/
.ta_left
{
	text-align: left;
}
.ta_right
{
	text-align: right;
}
.ta_center
{
	text-align: center;
}


/*-- 文字  --*/
.font10 {  font-size: 10px; line-height: 14px}
.font11 {  font-size: 11px; line-height: 15px}
.font12 {  font-size: 12px; line-height: 16px}
.font14 {  font-size: 14px; line-height: 18px}
.font16 {  font-size: 16px; line-height: 20px}
.font18 {  font-size: 18px; line-height: 25px}
.font20 {  font-size: 20px; line-height: 30px}

/*-- 特殊文字  --*/
.bold_red
{
	font-weight : bold;
	color: #FF0000;
}
.f_bold,
.bold
{
	font-weight : bold;
}

/*-- 文字色  --*/
.fc_red
{
	color: #FF0000;
}
.fc_blue
{
	color: #0000FF;
}
.f_blue
{
	color: #000080;
}
.fc_green
{
	color: #00FF00;
}


/*-- 箇条書  --*/
.li_disc
{
	list-style-type: disc;
}
.li_circle
{
	list-style-type: circle;
}
.li_square
{
	list-style-type: square;
}
.li_decimal
{
	list-style-type: decimal;
}


/*-- 線  --*/
.dashedTop { border-top: 2px dashed #666666; }
.dashedBottom { border-bottom: 2px dashed #666666; }
.borderSolid{ border: 1px solid #666666; }


/*-------------------------------------------------------------
|  ページ全体
-------------------------------------------------------------*/
body
{
	text-align: center;
	font-size: 12px;
	background-image: url( "../image/bak_img.gif" );
}

div#page
{
	width: 750px;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
}
div#header
{
	padding-top: 20px;
	padding-bottom: 10px;
}
div#header h1
{
}
div#header h2
{
	padding-top: 10px;
	padding-bottom: 5px;
}
div#main
{
	width: 100%;
	background-color: #FFF1D3;
}
div#footer
{
	padding-top: 5px;
	padding-bottom: 5px;
}


