
a:focus {
	outline: none;
}

.menu {
	height: 44px;
	display: block;
	padding: 0px;
	width:100%;
	margin-right: auto;
	margin-left: auto;
}
.menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu ul li {
	/* width and height of the menu items */  
	float: left;
	overflow: hidden;
	position: relative;
	line-height: 44px;
	text-align: center;
}
.menu ul li a {
	/* must be postioned relative  */ 
	position: relative;
	display: block;
	width: 132px;
	height: 44px;
	font-family: "Î¢ÈíÑÅºÚ", "ËÎÌå";
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
}
.menu ul li a span {
	/* all layers will be absolute positioned */
	position: absolute;
	left: 0;
	width: 132px;
}
.menu ul li a:link{line-height:44px;}

.menu ul li a span.out {
	top: 0px;
}
.menu ul li a span.over,  .menu ul li a span.bg {
	/* hide */  
	top: -44px;
}
/** 1st example **/

#menu1 {

	background-repeat: repeat-x;
	background-position: 0px 0px;
}
#menu1 ul li a {
	color: #000;
}
#menu1 ul li a span.over {
	color: #FFF;
}
#menu1 ul li span.bg {
	/* height of the menu items */  
	height: 44px;
	background-image: url(/images/bg_over.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
