@charset   "Shift_JIS";
/* ページの背景画像を指定する*/ 
body {
background-image : url(image/check1_gr.png);
}
/* 文字*/ 
body {
color : #333333 ;
}
P  {
font-size:12pt;
line-height: 1.9em; 
}
/* リンク文字*/ 
a:link {
color : #0000cc; 
}
/*すでに訪問*/ 
a:visited {
color : #000099;
}
/* クリックしたときに*/ 
a:active {
color: #ff0080;
}

/* マウスがリンク文字上に乗ったら背景色を変える*/ 
a:hover {
color:#000099;
background-color:#ffcc00;
}
/* マウスがリンク文字上に乗ったら下線（アンダーライン）を表示する*/ 
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
position: relative; 
top: 1px; 
left: 1px; 
text-decoration: none; 

}
/* リンク文字の下線（アンダーライン）をなくす*/ 
a {
text-decoration:none;
}
/* ページ全体の行送りを文字サイズに対して130%にする*/ 
body {
line-height: 120%;
}
/* 見出し */
h2,h3 {
color:#6666ff;
text-align:left;
}
/* 段落1　*/
p.1 {
background-color:white;
font-size:9pt ;
}
/* 水平線の色を指定する*/ 
hr {
color: #333333;
border:2px;
border-style: dotted;
dotted;
background-color: #333333;
}
/* スクロールバーの全体の色を指定する*/ 
html, body {
scrollbar-base-color:white;
}
/* スクロールバーの矢印の色を指定する*/ 
html, body {
scrollbar-arrow-color:#ffa500;
}
/* スクロールバーの面の部分の色を指定する*/ 

html, body {
scrollbar-face-color:white;
}
/* スクロールバーの影の部分の色を指定する*/ 
html, body {
scrollbar-darkshadow-color:#ffa500;
}
/* スクロールバーの影の部分の色を指定する*/ 
html, body {
scrollbar-darkshadow-color:#ffa500;
}
/* スクロールバーのハイライトの部分の色を指定する*/ 
html, body {
scrollbar-highlight-color:white;
}
/* スクロールバーの左と上の部分の色を指定する*/ 
html, body {
scrollbar-3dlight-color:#ffa500;
}
/* テーブルの背景色を指定する*/
table {
background-color:white;
}
/* テーブルの線 class="1"*/
TABLE.1 {
background-color:#ffffff;
border-width: 1px;
border-color: #3333cc;
border-style: solid;
border-collapse: collapse;
}
/* テーブルの線 class="2"*/
table.2 {
border-width: 2px;
border-color: #6699ff;
border-style: dotted;
}




