@charset "gb2312";
.ctrl-navigation {
	height: 60px;
	padding: 5px;
	border-radius: 30px;
	background-color: #bfa679;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(191,166,121,0.80)!important; /*　使用IE专属滤镜实现IE背景透明*/
}
.ctrl-navigation .nav-list {
	float: left;
	padding: 0px 15px;
}
.ctrl-navigation .nav-list li {
	width: 90px;
	float: left;
}
.ctrl-navigation .nav-list .first-nav a {
	display: block;
	height: 50px;
	color: #FFF;
	line-height: 50px;
	text-align: center;
}
.ctrl-navigation .nav-list .second-nav {
	margin-top: 5px;
	padding: 5px;
	background-color: #142952;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(20,41,82,0.80)!important; /*　使用IE专属滤镜实现IE背景透明*/
}
.ctrl-navigation .nav-list .second-nav a {
	display: block;
	height: 32px;
	color: #FFF;
	line-height: 32px;
	font-size: 12px;
	text-align: center;
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.ctrl-navigation .nav-list .second-nav a:hover {
	color: #bfa679;
}
.ctrl-navigation .nav-icon {
	float: right;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background-color: #142952;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(20,41,82,0.80)!important; /*　使用IE专属滤镜实现IE背景透明*/
}
.ctrl-navigation .nav-icon li {
	width: 100%;
	height: 100%;
	background-image: url(/img/list-icon.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}