/* Basic code - don't modify */
 
 #nav { display: block; width:auto;position: relative; }
* html #nav{ display: block; width:1024px;position: relative; }
  #nav li { display: block; list-style: none; margin: 0;float: left; position: relative; }
  #nav a { display: block; }
  #nav ul { display: none; position: absolute; left: 0; margin: 0; padding:0px; }
  * html #nav ul { line-height: 0; } /* IE6 "fix" */
  	#nav ul a { zoom: 1; } /* IE6/7 fix */
    #nav ul li { float: none; }
    #nav ul ul { top: 0; }
    
/* Essentials - configure this */

#nav ul { width:170px; }
#nav ul ul { left:170px; }

/* Everything else is theming */
 
#nav { background-color: #FFFFFF; height: 51px; }
/*#nav *:hover { background-color: none; }*/
/*#nav a { border-right: 1px solid white; color:#000000; font-size: 12px;line-height: 1; }*/
/*  #nav li.hover a { background-color: #5E5A5A;color:#FFFFFF; }*/

/*出る方向と位置　方向は　top→プルダウン／bottom→プルアップ*/
#nav ul {
	bottom: 51px;
}

*:first-child+html #nav ul { /*IE7*/
	bottom: 47px;
}

* html #nav ul { /*IE6以前*/
	bottom: 46px;
}

/*プルした部分の半透明設定*/
#nav ul a {
	opacity: 0.9; filter: alpha(opacity=80);
}

*:first-child+html #nav ul a { /*IE7*/
	opacity: 0.9; filter: alpha(opacity=90);
}

