
/*+++++++++++++++++++++++++++++ページ全体*/

*{
	margin:0;
	padding:0;
	border:0;
	
}
/*++++++++++++++++++++++++++++++ボディ部分*/
body{
    font-size: 10pt;
    font-family: "MS UI Gothic",sans-serif;
	background-image:url(../images/bg_body.gif) ;
	background-color : #ffffff;
	background-repeat: repeat-y;
	background-position: 50% 50%;
}
/*+++++++++++++++++++++++++++++リンクの設定*/
a{
	text-decoration: none;
}
a:link{
	color:#000;
}
/*+++++++++++++++++++++++++++++フロートクリア*/
.clear{
	clear: both;
}
/*+++++++++++++++++++++++++++++フォント*/
p{
	text-align: left;
	line-height: 1.5;
}
.f-red{
	color:#FF0000;
}
.f-blue{
	color:#0033FF;
}
.f-small{
	font-size: 8pt;
}
.right{
	float:right;
}
.left{
	float:left;
}
