/*  <head>タグ内に<LINK REL="stylesheet" TYPE="text/css" href="file:///C:/My%20Documents/Diary/css/note.css">
と記述するとnote.cssの設定が有効になります。  */

/*  <body>タグで囲まれた部分の設定  */
BODY{
background:#FFFFFF;           /* 背景白 */
margin-right:5px;
margin-left:5px;
margin-top:5px;
font-size:13px;               /* 文字サイズ１3ピクセル */
color:#696969;                   /* 文字色 dimgray */
line-height:120%;              /* 行間隔 120%(やや広め）*/
}

/*  <table>タグで囲まれた部分の設定  */
TABLE{
font-size:13px;               /* 文字サイズ１3ピクセル */
color:#696969;                   /* 文字色 dimgray */
line-height:120%;              /* 行間隔 120%(やや広め）*/
}

/*  ハイパーリンク関係設定（リンク・訪問済み・訪問中・オンカーソル）*/
a:link{text-decoration:none; color:#000080;}
a:visited{text-decoration:none; color:#4682B4;}
a:active{text-decoration:none; color:#00FFFF;}
A:hover {COLOR: #00FFFF;}/* カーソルが触れると 明るい水色*/

/*  ボタンの色 */
.push{	color: #ffffff; background: #6699cc; cursor: hand; }

/*  <h1>内の設定  */
H1{
color:#1E90FF;               /* 文字色 濃い水色 */
text-align:center;           /* 文字を中央揃え */
font-weight:bold;            /* 強調文字 */
font-size:20px;              /* 文字サイズ ２０ピクセル */
line-height:120%             /* 行間隔 120% */
}

/*  <h2>内の設定  */
H2{
color:#000088;            /* 文字色 暗めの青 */
text-align:center;           /* 文字を中央揃え */
font-weight:Bold;            /* 強調文字 */
font-size:16px;              /* 文字サイズ １6ピクセル */
line-height:120%             /* 行間隔 120% */
}

/*  <h3>内の設定  */
h3{
color:#4682B4;                  /* 文字色水色 */
font-size:13px;               /* 文字サイズ １3ピクセル */
line-height:100%;             /* 行間隔 100% */
}
