.nav {
	position: relative;
	float: right;
	z-index: 91;
	font-family: Microsoft JhengHei;
	font-size: 15px;
}
.nav ul li {
	width: 110px;
	position: relative;
	float: left;
	text-align: center;
	zoom: 1;
}
.nav ul li a {
	display: block;
	padding: 30px 0;
	color: #000000;
	background-image: url(../images/blank.png);
	background-position: center center;
	background-repeat: no-repeat;
}
.nav ul li a:hover {
	background-image: url(../images/menu_hover.png);
}
.nav ul li span.arrow {
	width: 20px;
	display: block;
	margin-left: -10px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 5;
	color: #000000;
	font-size: medium;
	text-align: center;
	cursor: pointer;
}
.nav ul li ul {
	display: none;
	padding: 0;
	position: absolute;
	left: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #FFD800;
}
.nav ul li ul li {
	border-top: thin solid #FEF200;
}
.nav ul li ul li:nth-child(1) {
	border-style: none;
}
.nav ul li ul li a {
	padding: 15px 0;
}
.nav ul li ul li a:hover {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.nav ul li ul li:nth-last-child(1) a:hover {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

/*--------------------------------------------按鈕--------------------------------------------*/
.nav .nav-bars {
	display: none;
	padding: 0 8px 2px;
	position: absolute;
	top: -25px;
	right: 0px;
	float: right;
	color: #000000;
	font-size: 20px;
	text-align: center;
	border: medium solid #000000;
	border-radius: 5px;
	background-color: #FEF200;
	cursor: pointer;
	-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;
}
.nav .nav-bars:hover {
	background-color: #FFFFFF;
}
.nav .nav-bars i {
}
.nav .nav-t {
	font-family: Microsoft JhengHei;
}
.nav.mobile .nav-bars {
	display: block;
}

/*--------------------------------------------手機--------------------------------------------*/
.nav.mobile {
	width: 100%;
	text-align: center;
}
.nav.mobile ul {
	width: 100%;
	display: none;
	position: absolute;
}
.nav.mobile ul li {
	width: 100%;
	float: none;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	overflow: hidden;
}
.nav.mobile ul li:nth-last-child(1) {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.nav.mobile ul li a {
	padding: 15px 0;
	text-align: center;
	border-top: thin solid #FEF200;
}
.nav.mobile ul li span.arrow {
	font-size: xx-small;
}
.nav.mobile ul li span {
	top: 15px;
	right: 15px;
	background-image: url(../images/arrow-01.png);
	background-position: 2px 0px;
	background-repeat: no-repeat;
}
.nav.mobile ul li.active span {
	background-image: url(../images/arrow-02.png);
	background-position: 2px -2px;
}
.nav.mobile ul li ul {
	width: 100%;
	position: static;
}
.nav.mobile ul li:hover ul {
	display: none;
}
.nav.mobile ul li ul li {
	width: 100%;
	border-top-style: none;
}
.nav.mobile ul li:hover ul a {
	background-color: #FEF200;
}
.nav.mobile ul li ul li:hover a:hover {
	background-color: #FFE500;
}
.nav.mobile ul li ul li:nth-last-child(1), .nav.mobile ul li ul li:nth-last-child(1) a:hover {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

/*--------------------------------------------RWD--------------------------------------------*/
@media screen and (max-width: 1216px) {
.nav ul li {
	width: 80px;
}
}

@media screen and (max-width: 1024px) {
.nav ul li a {
	width: 100%;
	height: 20px;
	display: block;
	color: #000000;
	line-height: 20px;
	background-color: #FFD800;
}
}

@media screen and (max-width: 480px) {
.nav .nav-bars {
	width: 99%;
	margin: 0 auto;
	padding: 0;
	top: 0px;
	float: none;
}
.nav.mobile ul {
	top: 33px;
}
}