@charset "utf-8";

.menu ul{height:30px;float:left;padding:1px 0 0 0;z-index:100;
}
.menu {z-index:100;background-color:#feefd4; padding-left:115px;width:855px;
}
.menu li {/*水平菜单*/
	float:left;
	list-style:none;z-index:100; border:2px #fff solid;
	position:relative;/*把包含块移动li元素*/
}
.menu li li{background-color:#fff;}
.menu a {
	display:block;
	width:102px;height:25px;line-height:25px;
	background:url(../images/arrow_g.gif) no-repeat bottom right #ffe2b0;
	color:#d07405;
	text-align:center;
	overflow:hidden;/*★★★★*/
}
.menu ul ul ul a {background-image:none;}
.menu a:hover {
	background-color:#ff9e2d;
	color:#fff;
	text-decoration:none;
}
/*新增的二级菜单部分*/
.menu ul ul {
	visibility:hidden;/*隐藏所有子菜单（二级的,三级的）*/
	position:absolute;
	left:-2px;
	top:24px;
	z-index:100;
}
/*指定是显示二级子菜单*/
.menu ul li:hover ul.second,/*非IE6*/
.menu ul a:hover ul.second{/*IE6*/
	visibility:visible;
}
.menu ul ul li {
	clear:both;/*垂直显示*/
	text-align:left;
}
.menu .third,.menu .fourth,.menu .fifth,.menu .sixth{
	top:-3px;/*重设子菜单相对于包含块哪个位置出现*/
	left:100px;
}
/*指定是显示三级子菜单*/
.menu ul ul li:hover ul.third,
.menu ul ul a:hover ul.third{
	visibility:visible;
}
/*指定是显示四级子菜单*/
.menu ul ul ul li:hover ul.fourth,
.menu ul ul ul a:hover ul.fourth{
	visibility:visible;
}
/*指定是显示五级子菜单*/
.menu ul ul ul ul li:hover ul.fifth,
.menu ul ul ul ul a:hover ul.fifth{
	visibility:visible;
}
/*指定是显示六级子菜单*/
.menu ul ul ul ul ul li:hover ul.sixth,
.menu ul ul ul ul ul a:hover ul.sixth{
	visibility:visible;
}
/*重设子菜单在鼠标滑过时的样式，有多少个ul就表明当前是多少级子菜单*/
/*二级子菜单*/
.menu ul ul a:hover{
	background:#ff9e2d;
	color:white;
}
/*三级子菜单*/
.menu ul ul ul a:hover{
	background:#ff9e2d;
	color:#fff;
}
.menu ul ul ul ul a:hover{
	background:#ff9e2d;
	color:#fff;
}
.menu ul ul ul ul ul a:hover{
	background:#ff9e2d;
	color:#fff;
}
.menu ul ul ul ul ul ul a:hover{
	background:#ff9e2d;
	color:#fff;
}
.menu table{
	border-collapse:collapse;
}