/* 设置整个导航所在的层的样式 */
#menu{width:1200px;height:50px; background: #b80809;left: 50%;margin-left: -600px;position: relative;z-index: 2}
#menu ul { width:1200px; height:50px; margin: 0 auto;}
#menu ul li{ width:170px; height:50px; text-align:center;float:left; position: relative;}
#menu ul li:hover a{ color: #ff0; }
#menu ul li a{ font-size:16px;font-family:"微软雅黑"; line-height:50px; color:#fff; display:block;}
#menu ul li.selected a{ color: #ff0;}
/*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:170px;
	height:auto;
	visibility: hidden;
	position:absolute;
    background:#b80809;
	padding:10px 0;
	top:10px;
}
#menu ul li ul li{
	width:170px;
	height:34px;
	line-height:34px;
	border:0;
	overflow: hidden;
	text-align:center;
	font-family:"微软雅黑";
	margin-bottom: 1px;
	float:left;
}
/* 设置子菜单中每个菜单项中 a 标签平常的样式 */
#menu ul li ul li a{
	 /* 子菜单的宽度 */
	height:34px;
	line-height:34px;
	color:#fff !important;
	font-size:15px;	
}
#menu ul li ul li.selected a{ color: #ff0 !important;}

/* 设置子菜单中每个菜单项中 a 标签鼠标经过的样式 */
#menu ul li ul li a:hover{
	height:34px;
	font-weight: normal;
	color:#ff0 !important;
	font-size:15px;
}
/* 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;
}