@charset "gb2312";
.ctrl-navigation {
	position: absolute;
	width: 100%;
}
.ctrl-navigation ul {
	position: relative;
	float: left;
	z-index: 999;
	margin-left: 9px;
}
.ctrl-navigation ul:first-child {
	margin-left: 0px;
}
.ctrl-navigation .first-nav a {
	display: block;
	padding: 0px 20px;
	width: 112px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #707070;
	text-align: center;
	cursor: pointer;
	background-image: url("nav-list-icon.png");
	background-repeat: no-repeat;
	background-position: right center;
}
.ctrl-navigation ul:last-child .first-nav a {
	background-image: url();
}
.ctrl-navigation ul:hover .first-nav a {
	background-image: url("nav-list-icon-hover.png");
	color: #FFF;
}
.ctrl-navigation .second-nav {
	position: absolute;
	min-width: 100%;
	background-color: #a77e40;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(167,126,64,0.80)!important; /*　使用IE专属滤镜实现IE背景透明*/
}
.ctrl-navigation .second-nav a {
	display: block;
	height: 30px;
	padding: 0px 10px;
	line-height: 29px;
	border-bottom: 1px solid #86622C;
	font-size: 14px;
	color: #FFF;
	text-align: center;
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.ctrl-navigation .second-nav a:hover {
	background-color: #00271b;
}