.menu {
	background: url(../image/b-men.png) repeat-x;
	background-color: #16488D;
	height: 27px;
	position: relative;
	z-index: 120;
	margin-top: 6px;
	min-width: 900px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	min-width: 950px;
	w\idth: 900px;
}
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	}
.menu li {
	float: left;
	width: 150px;
	position: relative;
}
.menu a, .menu a:visited {
	font-weight: normal;
	display: block;
/*	font-size: 11px; */
	text-decoration: none;
	color: #FFFFFF;
	width: 138px;
	height: 25px;
	padding-left: 10px;
	line-height: 25px;
	border: 1px solid #16488D;
	border-left-color: white;
}
/*IE5.5*/
* html .menu a, * html .menu a:visited {
	width: 149px;
	w\idth: 138px;
}
.menu li:hover > a.drop{
	font-weight: bold;
	border: 1px solid #FFFFFF;
}

/*second level*/
.menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 27px;
	left: 0;
	width: 150px;
}
.menu ul ul a.drop:hover{
	font-weight: bold;
	border: 1px solid #ffffff;
}
.menu ul ul a, .menu ul ul a:visited{
   background-color: #16488D;
	color: white;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 128px;
	font-weight: normal;
}
/*third level*/
.menu ul ul ul.right {
	left: 150px;
	top: 1px;
	border-top: 1px dotted #16488d;
}
.menu ul ul ul a, .menu ul ul ul a:visited {
	color: #16488d;
	font-weight: normal;
	border: dotted #16488d;
	border-width: 0px 1px 1px 1px;
	background: #FFF9EF;
}
/* IE*/
* html .menu ul ul a, * html .menu ul ul a:visited {
	width: 150px;
	w\idth: 128px;
}
.menu ul ul ul a:hover {
	color: #16488d;
	font-weight: bold;
	border: 1px solid #16488d;
}
/* IE*/
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul{
	visibility: visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility: hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
	visibility: visible;
}
