.officenav {
	font-size: 10px; 
	position:relative;
	z-index:1501;
	width:469px;
	float:right;
	height:9px;
}
/* hack to correct IE5.5 faulty box model */
* html .officenav {
	width:469px; 
	w\idth:469px;
}
/* remove all the bullets, borders and padding from the default list styling */
.officenav ul {
	padding:0; 
	margin:0;
	list-style-type:none;
	background: #fff;
	height: 7px;
}
.officenav ul ul {
	text-align: left;
	/* opacity:.90; filter: alpha(opacity=90); -moz-opacity:.90; */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown officenav positon */
.officenav li {
	float:left;
	position: relative;
}
/* style the links for the top level */
.officenav a, .officenav a:visited {
	display:block;
	text-decoration:none;
	border:0px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .officenav a, * html .officenav a:visited {
	text-decoration:none;
}
/* style the second level background */
.officenav ul ul a.drop, .officenav ul ul a.drop:visited {
	text-decoration:none;
}
/* style the second level hover */
.officenav ul ul a.drop:hover{
}


/* hide the sub levels and give them a positon absolute so that they take up no room // background:#dde0e0; */
.officenav ul ul {
	/* display: none; */
	visibility: hidden;
	position:absolute; 
	font-size: 10px;
	left: 0px;
	top: 7px;
	padding-top: 13px;
	width: 110px;
	height: 85px;
	background: #fff;
	filter:alpha(opacity=95);
	-moz-opacity:0.95;
	-khtml-opacity: 0.95;
	opacity: 0.95;
	
}
/* hide the sub levels and give them a positon absolute so that they take up no room // background:#dde0e0; */
.officenav ul ul.right {
	/* display: none; */
	visibility: hidden;
	position:absolute; 
	font-size: 10px;
	left: 85px;
	top: 7px;
	padding-top: 13px;
	width: 110px;
	height: 85px;
	background: #fff;
	filter:alpha(opacity=95);
	-moz-opacity:0.95;
	-khtml-opacity: 0.95;
	opacity: 0.95;
	
}
/* another hack for IE5.5 */
* html .officenav ul ul {
	top:7px;
	t\op:7px;
	padding-top: 13px;
	width: 110px;
	height: 85px;
	background: #fff;
	filter:alpha(opacity=92);
	-moz-opacity:0.92;
	-khtml-opacity: 0.92;
	opacity: 0.92;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.officenav table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}

/* style the second level links */
.officenav ul ul a, .officenav ul ul a:visited {
	color: #75716e; 
	height: auto; 
	line-height: 1em; 
	padding: 3px 5px 4px 6px; 
	width:100px;
	border: none; 
	text-decoration:none; 
}
/* style the second level on links */
.officenav ul ul a.on, .officenav ul ul a.on:visited {
	color: #75716e; 
	font-weight:bold;
	height: auto; 
	line-height: 1em; 
	padding: 3px 5px 4px 6px; 
	width:100px;
	border: none; 
	text-decoration:none; 
}
/* yet another hack for IE5.5 */
* html .officenav ul ul a {
	width:100px; 
	w\idth:100px; 
	text-decoration:none;
}

/* style the top level hover * html .officenav ul ul a:visited */
.officenav a:hover, .officenav ul ul a:hover {
	color: #2f444e; 
	background: none; 
	text-decoration:underline;
}
.officenav :hover > a, .officenav ul ul :hover > a {
	color:#2f444e;
	background: none; 
}
/* make the second level visible when hover on first level list OR link */
.officenav ul li:hover ul,
.officenav ul a:hover ul{
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.officenav ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.officenav ul :hover ul :hover ul{
	visibility:visible;
}
