@charset "utf-8";


/* 選項列 */


.nav {
	height: 49px;
	display: block;
	width: 543px;
	float: right;
	margin-top: 24px;
}

.nav ul {
			list-style: none;
			padding: 0;
			margin: 0;
}

.nav ul li {
	/* width and height of the menu items */  
			float: left;
	overflow: hidden;
	position: relative;
	line-height: 40px;
	text-align: center;
}

.nav ul li a {
	/* must be postioned relative  */ 
			position: relative;
	display: block;
	width:120px;
	height: 40px;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
}

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

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

		.nav ul li a span.over,
		.nav ul li a span.bg {
			/* hide */  
			top: -40px;
}
#nav1 {
}
		
#nav1 ul li a {
	color: #FFF;
}

#nav1 ul li a span.over {
	color: #000;
	background-color: #FFF;
}

a:focus { outline: none; }
