@charset "utf-8";


/* 選項列 */


.nav {
	height: 30px;
	display: block;
	width: 636px;
	margin-top: 30px;
	float: right;
	padding-top: 0px;
	padding-bottom: 0px;
}

.nav ul {
			list-style: none;
			padding: 0;
			margin: 0;
}
.nav_line{
	background-image: url(../nav_line.jpg);
	background-repeat: no-repeat;
	background-position: right;
}
.nav ul li {
	/* width and height of the menu items */  
	float: left;
	overflow: hidden;
	position: relative;
	line-height: 30px;
	text-align: center;
}

.nav ul li a {
	/* must be postioned relative  */ 
	position: relative;
	display: block;
	width: 115px;
	height: 30px;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	margin-right: 5px;
	font-family: "微軟正黑體";
	font-weight: bold;
	margin-left: 5px;
}

.nav ul li a span {
			/* all layers will be absolute positioned */
			position: absolute;
			left: 0;
			width: 115px;
}

		.nav ul li a span.out {
	bottom: 0px;
}

		.nav ul li a span.over,
		.nav ul li a span.bg {
	top: -30px;
}
#nav1 {
	background-repeat: repeat-x;
	background-position: center top;
}
		
#nav1 ul li a {
	color: #333;
}

#nav1 ul li a span.over {
	color: #FFFFFF;
	background-image: url(../nav_over.jpg);
	-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

a:focus { outline: none; }
