/* レイアウト関係 */
body {
	background-color: #EEEEEE;
	color: #000000;
	text-align: left;
	font-size: 12px;
	}





h1 {
	color: #000000;
	font-size: 12px;
}

h2 {
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}

h3, h4 {
	color: #000000;
		font-size: 13px;
}

h5, h6 {
	color: #000000;
		font-size: 12px;
}



td, th {
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}

A:link { text-decoration:none; color:#0000ff; }
A:active { text-decoration:none; color:#000000;}
A:visited { text-decoration:none; color:#990099;}
A:hover {text-decoration:none; color:#ff0000;}





#Menu {
height: 18px;/*メニューの高さ*/
}

#Menu ul {
margin: 0;
padding :0;
list-style-type : none;/*リストスタイルはなしにする*/
}

#Menu li {
display : inline;
margin:0;
float:left;/*フロートを左に指定してボタンを横並びにする*/
}

#Menu a {
display: block;/*ブロックにして各ボタン全体をリンクエリアにする*/
text-decoration:none;
border-top:1px solid #ffff66;/*上線の幅（細）とカラー（薄）*/
border-right:2px solid #ffcc33;/*右線の幅（太）とカラー（濃）*/
border-bottom:2px solid #ffcc33;/*下線の幅（太）とカラー（濃）*/
border-left:1px solid #ffff66;/*左線の幅（細）とカラー（薄）*/
text-align:center;/*文字をボタンの中央にする*/
width: 63px;/*各ボタンの幅*/
padding-top: 4px;/*文字上部余白*/
padding-bottom: 2px;/*文字下部余白*/
font-size: 1.0em;/*文字サイズ*/
font-weight: normal;
background: #ffff66;/*ボタン背景色*/
color: #000000;/*文字色*/
}

#Menu a:hover {/*ここからマウスオーバー時の設定*/
display:block;
text-decoration:none;
border-top:2px solid #369;/*上線の幅（太）とカラー（濃）*/
border-right:1px solid #69c;/*右線の幅（細）とカラー（薄）*/
border-bottom:1px solid #69c;/*下線の幅（細）とカラー（薄）*/
border-left:2px solid #369;/*左線の幅（太）とカラー（濃）*/
text-align:center;
font-weight: normal;
background: #ffffcc;/*マウスオーバー時の背景色*/
color: #369;
}

