/* 
	！！ 添加注释的样式可以修改 ！！ 
	！！ 要开启阴影，需要在 js 文件中进行修改，但开启阴影后，在IE6中有一点点的 bug ！！
*/

/* 设置整个导航所在的层的样式 */

#top {
    position:absolute;
    width:100%;
    height: 33px;
    overflow: hidden;
    margin: 0px auto;
    background:#F5F5F5;
	}
#topzhong {
   
    width:1150px;
    height: 33px;
    overflow: hidden;
    margin: 0px auto;
    background:#F5F5F5;
}

#topleft {
    height: 33px;
    float: left;
    overflow: hidden;
	padding: 5px;
	color: #4E4E4E;
}

#topright {
    height: 33px;
    float: right;
    overflow: hidden;
	padding: 5px;
	color: #4E4E4E;
	font-size: 16px;
}
#menu{
	width: 1200px;
	margin:0 auto;
	height:53px;
}
#menu ul { width:1200px;height:53px;margin:0 auto; text-align:center;}
#menu ul li{
	float: left;
	width:120px;   /* 菜单项的宽度 */
	height:53px;   /* 菜单项的宽度 */
	line-height:53px;
	text-align:center;
	font-size:16px;
	position:relative;
	font-family:"Microsoft Yahei";
}
/* 设置第一行中每个菜单项中 a 标签平常的样式 */
#menu ul li a{font-size:16px;
	display: block;
	color:#fff;
	font-family:"Microsoft Yahei";
	text-decoration: none;
}

/*IE6 hack to get sub menu links to behave correctly*/
* html #menu ul li a{display: block;}
/* 设置每个菜单项中 a 标签经过的样式 */
#menu ul li a:hover{
    width:120px;
    height:53px;
    margin:0 auto;
    color:#000;
    background: #F4F4F4
}
#menu ul li ul{
	display: none;
	visibility: hidden;
	width:120px;
	position:absolute;
    background:#d71f1d;
	left:0;
	top:5px;
}
#menu ul li ul li{
	height:40px;
	line-height:40px;
	border:0;
	width:120px;
	font-size:12px;
	font-family:"宋体";
}
/* 设置子菜单中每个菜单项中 a 标签平常的样式 */
#menu ul li ul li a{
	 /* 子菜单的宽度 */
	height:40px;
	line-height:40px;
	color:#ffffff;
	float:left;
	font-size:14px;
	width:120px;
}
/* 设置子菜单中每个菜单项中 a 标签鼠标经过的样式 */
#menu ul li ul li a:hover{
	height:40px;
	line-height:40px;
    color:#000;
	background: #F4F4F4;
}
/* Holly Hack for IE \*/
* html #menu{height: 1%;}
/* 控制首行导航右侧三角的位置 */
.downarrowclass{
	position: absolute;
	top: 53px;    
	left: 45px;
}
/* 控制子导航右侧三角的位置 */
.rightarrowclass{
	position: absolute;
	top: 13px;     
	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;
}

/*=====================================*/
/* 菜单项之间的竖线 */
#menu ul li.menu_line{  
	background:url(../images/menu_line.png) no-repeat center;
	width:2px;
	height:53px;
}