@charset "gb2312";
.ctrl-navigation {
	position: absolute;
	width: 100%;
}
.ctrl-navigation ul {
	position: relative;
	width: 100px;
	height: 140px;
	padding-top: 80px;
	float: left;
	z-index: 999;
}
.ctrl-navigation .first-nav {
	position: relative;
	width: 100px;
	height: 60px;
	overflow: hidden;
}
.ctrl-navigation .first-nav a {
	position: absolute;
    display: block;
	width: 100px;
    height: 120px;
    line-height: 60px;
    font-size: 14px;
    color: #FFF;
    text-align: center;
    cursor: pointer;
    text-shadow: 1px 1px 3px #333;
}
.ctrl-navigation ul:hover {
	background-color: #006496;
}
.ctrl-navigation ul:hover .first-nav a {
   top: -60px;
}
.ctrl-navigation .second-nav {
	position: absolute;
	min-width: 100%;
	background-color: #27363d;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(39,54,61,0.80)!important; /*　使用IE专属滤镜实现IE背景透明*/
}
.ctrl-navigation .second-nav a {
	display: block;
	height: 40px;
	padding: 0px 10px;
	line-height: 39px;
	border-bottom: 1px solid #006496;
	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: #006496;
}