/* navi_01导航样式  
--------------------------------------------------------------------*/
.navBar {
	position: relative;
	color: #fff;
	height: 90px;
	margin-left: 20px;
}


/*nav*/
.nav {
	width: 630px;
	height: 30px;
	padding: 30px 0;
	margin: 0 auto;
}
.nav h3 {
	font-size: 100%;
	font-weight: normal;
	font-size: 14px;
}
.nav .m {
	position: relative;
	float: left;
	margin: 0 3px;
	display: inline;
	text-align: center;
}

.nav h3 a:link, .nav h3 a:visited {
	zoom: 1;
	height: 30px;
	padding: 0 15px;
	line-height: 30px;
	display: block;
	color: #7a7a7a;
	text-align:center;
}

/*当前状态*/
.nav .cur h3 a:link, .nav .cur h3 a:visited {
	background: #e62129;
	border-radius: 3px;
	color: #fff;
}
.nav .on h3 a:link, .nav .on h3 a:visited {
	background: #e62129;
	border-radius: 3px;
	color: #fff;
}


/*一级*/
.nav .sub {
	display: none; /*默认隐藏*/
	width: 150px;
	position: absolute;
	left: -27px;
	top: 40px;
	float: left;
	line-height: 30px;
	overflow: visible;
	z-index: 999;
	background: #fff;
	opacity: 0;
    transition: all .5s ease 0s;
	filter: alpha(opacity=0);
    visibility: hidden;
    visibility: visible\0;
	_width:500%;
	_border-bottom:none;
}
.nav .on .sub {
	opacity: 1;
	filter:alpha(opacity=100);
	transform: translate3d(0, -10px, 0);
	-moz-transform: translate3d(0, -10px, 0);
	-webkit-transform: translate3d(0, -10px, 0);
	visibility: visible;
	visibility: visible\0;
}
.nav .sub li {
	text-align: center;
	border-bottom: 1px solid #ccc;
}
.nav .sub li a:link, .nav .sub li a:visited {
	font-size: 12px;
    color: #888;
    line-height: 40px;
}
.nav .sub li a:hover {
	color: #e62129;
}








