/* CSS Document */
<!--
a.mike:link {
	color: #FFFFFF;
	text-decoration: none;
}
a.mike:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a.mike:hover {
	text-decoration: none;
	color: #A8C0D9;
}
a.mike:active {
	text-decoration: none;
	color: #FFFFFF;
}
-->
.menu {
position: absolute;
width:1000px; 
height:24px; 
font-size:12px;; 
position:relative; 
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
width:1000px; 
w\idth:1000px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
/* 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;
}
/* style the links for the top level */
.menu a, .menu a:visited {
margin-left:3px;
display:block;
font-size:11px;
text-decoration:none;
font-family:tahoma;
font-weight:bold;
color:#fff; 
width:109px; 
height:24px; 
border:1px solid #fff;
background-image:url(../images/b1.jpg);
background-repeat:no-repeat;
text-align:center;
line-height:24px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:109px; w\idth:109px;}

/* 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:27px;
width:109px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:24px;
t\op:27px;
}

/* 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; 
border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#2c67b5; 
color:#fff; 
height:auto; 
line-height:1em; 
padding:5px;
text-align:left;
border-width:0 0px 1px 0px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
w\idth:100px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#2861ab;
}

/* 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;
}

