﻿.menu {
font-family: arial, sans-serif; 
width:100%; 
margin:0; 
margin:0 0;
}

.menu ul {
padding:0; 
margin:0;
list-style-type: none;
font-size:14px;
font-weight:bold;
font-family: 微软雅黑;
}

.menu ul li {
float:left; 
position:relative;
font-size:14px;
font-weight:bold;
font-family: 微软雅黑;
}

.menu ul li a, .menu ul li a:visited
{
	display: block;
	text-align: center;
	text-decoration: none;
	width: 90px;
	height: 30px;
	color: #FFFFFF;
	border: 1px solid #fff;
	border-width: 1px 1px 0 0;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
	background-color: #F2B000;
	font-family: 微软雅黑;
}

.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a
{
	color: #fff;
	background-color: chocolate;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute; 
top:31px; 
left:0; 
width:150px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a
{
	display: block;
	color: #FFF;
	background-color: burlywood;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover
{
	color: #FFF;
	background-color: goldenrod;
}
