/**
* Description：CSS for the main navigation
* Author：Gavin
* E-mail: shengzhizhang@gmail.com
* Created On：2008-10-27
* Last modification On：2010-3-8 
**/

/* mainNav */
.ddsmoothmenu {
	font-family: Arial, "Times New Roman", "宋体";
	font-size: 12px;
}
.ddsmoothmenu ul {
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}
/*顶级菜单项*/
.ddsmoothmenu ul li {
	position: relative;
	display: inline;
	float: left;
}

.ddsmoothmenu ul li a {
	display: block;
	line-height:22px;/****改为跟一级栏目高度同样的数值****/
	text-decoration: none;
}
* html .ddsmoothmenu ul li a {
display: inline-block;
}
.ddsmoothmenu .pngBg ul li a {
	color: #000;/****文字颜色****/
}
.ddsmoothmenu ul li a:hover, .ddsmoothmenu ul li a.active, .ddsmoothmenu ul li a.current {
color: #fff;/****文字翻转颜色****/
}
.ddsmoothmenu ul li a span{
	display: inline-block;
	cursor: pointer;
	width: 118px;
	text-align: center;
	font-family: "微软雅黑";
	background-image: url(../images/site_bg.jpg);
	background-repeat: no-repeat;
	height: 22px;
	line-height: 22px;
	color: #000;
}


/*子级菜单*/
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0;
	display: none;
	visibility: hidden;
	border: 1px solid #E8E8E8;
	width: 198px;
	background-color: #FFF;
}
.ddsmoothmenu ul li ul li {
	float: none;
	padding-right: 0;
	background-image: none;
}

.ddsmoothmenu ul li ul li ul {
top: 0;
}
.ddsmoothmenu ul li ul li a {
	width: 195px; /****子级菜单宽度****/
	line-height:22px;/****子级菜单高度****/
	margin: 0;
	font-size: 12px;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E8E8E8;
	padding-left: 5px;
}
.ddsmoothmenu ul li ul li a:hover {
background:#B01709;/****子级菜单翻转背景****/
color: #fff;
}
/***** Clear fixed *****/
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
