#menu {
	background-color:#0156AC;
	width:900px;
	height:auto;
	text-align:right;
	border-top-color:#0E3B7E;
	border-top-style:solid;
	border-top-width:3px;
	color: #FFFFFF;
	border-bottom-color: #0E3B7E;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

.menu {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#0E3B7E;
	width:auto;
	height:35px;
	position:relative;
	z-index:100;
}

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu li {
	float:left;
	width:65px;
	position:relative;
}

html>body .menu li {
	width:auto;
}

* html .menu a, * html .menu a:visited {
	width:auto;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color:#0E3B7E;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background-color:#0E3B7E;
}
.menu ul ul :hover > a.drop {
	background-color:#0E3B7E;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background-color:#0E3B7E;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background-color:#0E3B7E;
}


.menu a, .menu a:visited {
	text-align:left;
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	height:35px;
	background-color:#0156AC;
	padding-left:10px;
	padding-right:10px;
	line-height: 3em;
}

.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:35px;
	left:0;
	width:auto;
}

* html .menu ul ul {
	top:35px;
	t\op:36px;
}

.menu ul ul ul {
	top:0;
	width:auto;
}

.menu table {
	position:absolute;
	top:0;
	left:0;
}

.menu ul ul a, .menu ul ul a:visited {
	border-top-color:#0F3C7F;
	border-top-style:solid;
	border-top-width:1px;
	text-align:left;
	background-color:#0156AC;
	color:#FFFFFF;
	height:25px;
	padding:5px 10px;
	width:200px;
	filter:alpha(opacity=95);
	-moz-opacity:0.95;
	line-height: 2em;
}

* html .menu ul ul a {
	width:200px;
}

.menu a:hover, .menu ul ul a:hover{
	color:#FFFFFF;
	text-decoration:none;
	background-color: #0E3B7E;
}

.menu :hover > a, .menu ul ul :hover > a {
	color:#FFFFFF;
	background-color: #0E3B7E;
	text-decoration:none;
}

/* 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;
}