*{
margin:0;
padding:0;
}
.menu {
	width:800px; 
	position:relative;
	z-index:100;
	font:bold 12px/12px Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	color:#0064aa;
	background:url(../images/ocean-menu-bckgrnd.gif) no-repeat 60px 8px;
	padding:8px 36px 0 75px;
	float:left;
	display: table;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:210px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	font:bold 12px/12px Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	color:#0064aa;
	text-transform: uppercase;
	min-width:130px;
}
* html .menu li {width:130px;} /* IE Min-Height Hack */ 
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none; 
	font:bold 12px/12px Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	color:#0064aa;
	min-height:26px; 
	border:1px solid #fff; 
	line-height:25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:130px;
w\idth:104px;
height:28px;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:28px;
left:0; 
width:210px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:29px;
t\op:29px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#FFFFFF url(../images/normal.png) top left no-repeat; 
color:#0064aa; 
line-height:28px; 
padding:5px 0 5px 8px; 
width:210px;
opacity:.95;
-moz-opacity: 0.95;
border-bottom:#e9e9e5 solid 1px;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:210px;
w\idth:210px;
}


/* style the top level hover */
.menu a:hover{
color:#9fd4f8; 
background:#FFFFFF url(../images/over.gif) top left no-repeat;
opacity:1.0;
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		 -moz-opacity:1.0;
}
.menu ul ul a:hover{
color:#9fd4f8; 
background:#FFFFFF url(../images/over.gif) top left no-repeat;
opacity:1.0;
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		 -moz-opacity:1.0;

}
.menu ul ul :hover > a {
color:#9fd4f8;
background:#FFFFFF url(../images/over.gif) top left no-repeat;
opacity:1.0;
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		 -moz-opacity:1.0;

}

/* 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;
opacity:1.0;
filter: alpha(opacity=100); 
-moz-opacity:1.0;

}

div.clear {
	clear:both;
	}
