/* CSS Document */
.menu {
	width: 768px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #999999;
	/*text-transform: uppercase;*/
}

/* 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{
	z-index: 1000;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li{
	display:block;
	float:left;
	position:relative;
	text-align:left;
	white-space:nowrap;
}

/* style the links for the top level */
.menu a, .menu a:visited{
	/*display:block;*/
	text-decoration:none; 
	border:0 none;
	color:#666666;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited{
	width:102px;
}

.menu ul ul a{
	font-weight: normal;
	padding-left:4px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:18px;
	left:0; 
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:18px;
}

/* style the table so that it takes no part 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 {
	/*display:block;*/
	font-family: Helvetica, sans-serif;
	/*font-family:Arial;*/
	font-size:14px;
	display:inline-block;
	background:#80A5AB;
	color:white;
	line-height:28px; /* the height of the mouseoverbox*/ 
	font-size: 10pt;
	height:25px;
}

/* style the top level hover */
.menu a:hover {
	color:white;
	background: none;
}

.menu ul ul a:hover{
	/*display:block;*/
	display:inline-block;
	color:#666666; 
	background:#C6D4D7;	
}

.menu :hover > a {
	color:#014681;
	background: none;
}

.menu ul ul :hover > a {
	color:#666666;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
	visibility:visible; 
}
