/* 设置整个导航所在的层的样式 */
#menu{width: 100%;height:50px;background: #323033}
#menu ul{width: 1200px;height: 50px;margin: 0 auto}
#menu ul li{width:120px;height: 50px;line-height:50px; text-align: center; float: left;position: relative; transition: 0.4s all}
#menu ul li a{color: #fff;font-size: 15px;display: block;}
#menu ul li:hover a{background: #d90000}
#menu ul li.selected a{background: #d90000}
/*IE6 hack to get sub menu links to behave correctly*/
* html #menu ul li a{display: block;}
/* 设置每个菜单项中 a 标签经过的样式 */
#menu ul li ul{
	display: none;
	width:122px;
	height:auto;
	visibility: hidden;
	position:absolute;
    background:#da2618;
	top:10px;
}
#menu ul li ul li{
	width:122px;
	height:34px;
	line-height:34px;
	border:0;
	text-align:center;
	font-family:"微软雅黑";
	border-bottom: 1px #c51d10 solid;
	float:left;
}
/* 设置子菜单中每个菜单项中 a 标签平常的样式 */
#menu ul li ul li a{
	 /* 子菜单的宽度 */
	height:34px;
	line-height:34px;
	color:#fff;
	font-size:14px;	
}
#menu ul li ul li.selected a{ color: #ff0;}

/* 设置子菜单中每个菜单项中 a 标签鼠标经过的样式 */
#menu ul li ul li a:hover{
	height:34px;
	color:#ff0;
	font-size:14px;
}
/* Holly Hack for IE \*/
* html #menu{height: 1%;}
/* 控制首行导航右侧三角的位置 */
.downarrowclass{
	position: absolute;
	top: 103px;    
	left: 41px;
}
/* 控制子导航右侧三角的位置 */
.rightarrowclass{
	position: absolute;
	top: 95px;     
	right: 7px;
}
/* 阴影样式,如果在 js 中开启了阴影，则需设置 */
.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}
/* 透明度的设置 */
.toplevelshadow{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	opacity: 0.8;
}