@charset "UTF-8";

/* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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


/* 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;
}

dl.MenuBarVertical li ul/*サブメニューエリア設定*/
{
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	
	

	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
dl.MenuBarVertical ul.MenuBarSubmenuVisible
{
/*サブメニュー見えてるときの表示位置設定*/
	left:139px;
	top:324px;
}
/* Menu item containers are same fixed width as parent */
dl.MenuBarVertical ul li
{
width:138px;
height:35px;
display:block;

text-align:center;
padding:0px 0 0 0;
background-color:#EFEFEF;
display: block;
text-decoration: none;
cursor: pointer;
}


dl.MenuBarVertical a.MenuBarItemHover, dl.MenuBarVertical a.MenuBarItemSubmenuHover, dl.MenuBarVertical a.MenuBarSubmenuVisible
{
/*サブメニューホバー時の設定*/
/*
width:138px;
height:40px;
	display:block;
	background-color:#FFFBF4;
	color:#000000;
	text-decoration: none;
	*/

}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
dl.MenuBarVertical a.MenuBarItemSubmenu
{

}



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

 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 */
dl.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	dl.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
