/**
* 描述：全局 CSS
* 作者：Gavin
* 电子邮箱: shengzhizhang@gmail.com
* 创建时间：2008-10-27
* 最近修改：11:00 2010-8-4
**/

/* mainNav */
#mainNav {
height:32px; /****一级栏目高度****/
background:#f7f2e5;/****一级栏目背景****/
text-align:center;
}
.ddsmoothmenu {
font-size:14px;
width: 100%;

}
.ddsmoothmenu ul {
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
background-color:#A27637;
}
/*顶级菜单项*/
.ddsmoothmenu ul li {
position: relative;
display: inline;
float: left;
}

.ddsmoothmenu ul li a {
display:inline-block;/****一级栏目间距****/
line-height:32px;/****改为跟一级栏目高度同样的数值****/
/*background:url(../images/nav_line.gif) no-repeat right 8px;*//****一级栏目间隔线背景****/
text-decoration: none;
width:142px;
font-weight:bold;
}
* html .ddsmoothmenu ul li a {
display: inline-block;
}
.ddsmoothmenu ul li a {
color:#ffffff;/****文字颜色****/
}
.ddsmoothmenu ul li a:hover, .ddsmoothmenu ul li a.active, .ddsmoothmenu ul li a.current {
	color: #993300;/****文字翻转颜色****/
	background:#e4d4a9;
}
/*子级菜单*/
.ddsmoothmenu ul li ul {
position: absolute;
left: 0;
display: none;
visibility: hidden;
}
.ddsmoothmenu ul li ul li {
display: list-item;
float: none;
}
.ddsmoothmenu ul li ul li ul {
top: 0;
}
.ddsmoothmenu ul li ul li a {
background: #e4d4a9;/****子级菜单背景****/
width:142px;/****子级菜单内间距****/
line-height:26px;/****子级菜单高度****/
margin: 0;
display:inline-block;
border-bottom:1px solid #fff;
color: #9b7733;
display:inline-block;
font-weight:normal;
/*filter: Alpha(opacity=80);   
-moz-opacity:.80;   
opacity:0.80;*/
}
.ddsmoothmenu ul li ul li a:hover, .ddsmoothmenu ul li ul li.active a:hover {
background:#222;/****子级菜单翻转背景****/
}