@charset "UTF-8";



/*******************************************************************************
プルダウン・メニュー　レイアウト
 *******************************************************************************/
 
 /* The outermost container of the Menu Bar, an auto width box with no margin or padding
ul.MenuBarHorizontal
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	padding: 0;
	width: auto;
	background-color: #CCCCCC;
} */

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
 ul.MenuBarActive
{
	z-index: 1000;
}

/* メニュー項目の幅 */
div.nav ul.MenuBarHorizontal li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: relative;
	text-align: left;	/* サブメニューが右へずれる */
	width: 120px;
	float: left;
}

/* ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 120px;
	float: left;
}*/

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) 
サブメニュー項目全体の幅、位置（画面の外に）*/
ul.MenuBarHorizontal ul
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 120px;
	position: absolute;
	left: -1000em;	
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

/* サブメニューを表示 */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	background-color: #CCCCCC;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen 
サブメニュー・下位階層の位置*/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************
プルダウン・メニュー　デザイン
 *******************************************************************************/
 
 /* Submenu containers have borders on all sides 
サブメニューの枠*/
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCCCCC;
}

/* Menu items are a light gray block with padding and no text decoration 
リンク項目・背景・色*/
div.nav ul.MenuBarHorizontal a
{
	display: none;
	cursor: pointer;
	color: #333;
	text-decoration: none;
	padding-top: 0.5em;
	padding-right: 0.75em;
	padding-bottom: 0.5em;
	padding-left: 2em;
	text-align: center;
}
/* サブメニュー上にマウスポインタがあるとき・テキストの色、バックの色 
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal a.MenuBarSubmenuVisible*/
div.nav ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-color: ;
	color: #CC0033;
	background-image: url(../image/menu_on.gif);
}


/* マウスポインタが上にあるときのテキストの色、フォーカスがあるときのテキストの色、バックの色
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #33C;
	background-image: url(../image/menu_on.gif);
	color: #FFF;
} */




/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
	
	.nav #MenuBar1 #fix {
	
	position: absolute;
	top: 25px;
}
}
