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

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

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

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

#globalNavi 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: #d2e7fd;/*マウスオーバー時の背景色*/
	color: #369;
}

ul#menu_bar {
	font-size: 100%; /* 文字サイズ */
	height:25px; /* 高さ */
	background-color:#000000; /* 背景色 */
	padding-left:0px;
	margin-left:0px;
	margin-top:0px; /* 上の間隔 */
	margin-bottom:5px; /* 下の間隔 */
}

#menu_bar li {
	list-style-type:none;
	float:left;
	line-height:25px; /* 高さ */
	margin:0px;
	padding:0px;
}

#menu_bar li a {
	display:block;
	text-align:center;
	width:150px; /* １つのメニューボタンの幅 */
	border-right:1px solid #c0c0c0; /* 区切り線 */
	color:#ffffff; /* リンク文字の色 */
	background-color:#000000; /* メニューボタンの背景 */
	text-decoration:none;
}

#menu_bar li button {
	display:block;
	text-align:center;
	width:150px; /* １つのメニューボタンの幅 */
	border-right:1px solid #c0c0c0; /* 区切り線 */
	color:#ffffff; /* リンク文字の色 */
	background-color:#000000; /* メニューボタンの背景 */
	text-decoration:none;
}

#menu_bar li a:hover{
	color:#ffffff; /* マウスが乗ったときのリンク文字の色 */
	background-color:#c0c0c0; /* マウスが乗ったときの背景色 */
	text-decoration:none;
}
#menu_bar li button:hover{
	color:#ffffff; /* マウスが乗ったときのリンク文字の色 */
	background-color:#c0c0c0; /* マウスが乗ったときの背景色 */
	text-decoration:none;
}
/* ▲メニューバー▲ */

/* ▼メニューバー（ドロップダウン）▼ */

#menu_bar ul {
	position:absolute;
	margin:0;
	padding:0;
}

#menu_bar li {
	position:relative;
	margin:0;
	padding:0;
}

#menu_bar li ul li {
	float:none;
}

#menu_bar li.menu ul,
#menu_bar li.menu ul li.menu ul,
#menu_bar li.menu_on ul li.menu ul {
	display:none;
}

#menu_bar li.menu_on ul {
	position:absolute;
	display:block;
	top:100%;
	left:0;
}

#menu_bar li.menu_on ul li.menu_on ul {
	position:absolute;
	display:block;
	top:0;
	left:100%;
}

/* ▽IE6バグ対応▽ */
* html #menu_bar li li,
* html #menu_bar li li li {
	font-size:1px;
	line-height:0;
}
* html #menu_bar li li a,
* html #menu_bar li li li a {
	display:block;
	font-size:10pt;
	line-height:25px;
}
* html #menu_bar li li button,
* html #menu_bar li li li button {
	display:block;
	font-size:10pt;
	line-height:25px;
}
/* △IE6バグ対応△ */

#menu_bar li li a,
#menu_bar li li li a {
	border-top:1px solid #111111; /* 区切り線 */
}
#menu_bar li li button,
#menu_bar li li li button {
	border-top:1px solid #111111; /* 区切り線 */
}

/* ドロップダウンリストの透過（IE6以下未対応） */
#menu_bar > li > ul {
filter:alpha(opacity=90);
-moz-opacity: 0.9;
opacity: 0.9;
}