.nav {
	position: relative;
	z-index: 91;
	font-size: medium;
}
.nav ul li {
	position: relative;
	float: left;
	text-align: center;
	zoom: 1;
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	background-image: url(../images/blank.png);
}
.nav ul li:hover {
	background-image: url(../images/menu_hover.png);
}
.nav ul li a {
	display: block;
	padding: 15px 25px;
	color: #FFFFFF;
	font-weight: bold;
	text-shadow: 0px 0px 5px #0000FF ,0px 0px 5px #0000FF ,0px 0px 5px #0000FF;
}
.nav ul li:hover a {
	color: #0000FF;
	text-shadow: 0px 0px 5px #FFFFFF ,0px 0px 5px #FFFFFF ,0px 0px 5px #FFFFFF;
}
.nav ul li span.arrow {
	display: block;
	position: absolute;
	top: 32px;
	right: 2px;
	z-index: 5;
	color: #000000;
	font-size: x-small;
	cursor: pointer;
}
.nav ul li:hover span.arrow {
	color: #FFFFFF;
}
.nav ul li ul {
	display: none;
	padding: 0;
	position: absolute;
	left: 0px;
}
.nav ul li ul li a {
	display: block;
	padding: 10px;
}
.nav ul li:hover ul a {
	width: 100%;
	color: #FFFFFF;
	border-bottom: thin solid #666666;
	background-color: rgba(0,0,0,0.70);
}
.nav ul li:hover ul li:nth-last-child(1) a {
	border-bottom: none;
}




/*-------------------- 三條線 --------------------*/
.nav .nav-bars {
	width: 80px;
	height: 30px;
	position: absolute;
	top: -30px;
	right: 20px;
	font-size: large;
	cursor: pointer;
	color: #FFFFFF;
	background-image: url(../images/TopMenuBG.png);
	background-position: right top;
	background-repeat: repeat-x;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	border-radius: 10px;
	transition: all 0.5s ease 0s;
}
.nav .nav-bars:hover {
	color: #00FFFF;
}
.nav .nav-t {
	top: 0px;
	position: relative;
}
.nav .nav-bars i {
	position: absolute;
	top: 5px;
	left: 10px;
	z-index: 1;
}





/*-------------------- 手機 --------------------*/
.nav.mobile {
	width: 100%;
	margin: -90px 0 0 0;
}
.nav.mobile ul {
	width: 100%;
	display: none;
	background-color: rgba(0,0,0,0.70);
}
.nav.mobile ul li {
	width: 100%;
	float: none;
}
.nav.mobile ul li a {
	padding: 15px 0;
	border-bottom: thin solid #666666;
}
.nav.mobile ul li:nth-last-child(1) a {
	border-bottom: none;
}
.nav.mobile ul li span.arrow {
	padding: 10px;
	top: 5px;
	right: 5px;
	color: #FFFFFF;
	font-size: xx-small;
}
.nav.mobile ul li span, .nav.mobile ul li:hover span {
	background-image: url(../images/arrow-01.png);
	background-position: 5px 10px;
	background-repeat: no-repeat;
}
.nav.mobile ul li.active span {
	background-image: url(../images/arrow-02.png);
	background-position: 5px 8px;
	background-repeat: no-repeat;
}
.nav.mobile ul li ul {
	width: 100%;
	position: static;
}

@media screen and (min-width: 999px) {
.nav .nav-bars {
	display: none;
}
}