/* CSS Document */
#menu{
	position: relative;
	z-index:10;
	height: 67px;
}
#menu span { display:none; }
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul li ul{top:60px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left; height:67px; position:relative;}
/* style the links for the top level */
#menu ul li a{display:block; height:67px;}
.menu ul li a:hover{background-position:bottom;}
#menu ul li ul li{ display:block; height:34px; width:102px; margin-left:20px;}
#menu ul li ul li a{display:block; height:34px; }
#menu ul li ul li:hover{display:block; background-position:bottom;}
/* a hack so that IE5.5 faulty box model is corrected */

/* style the second level background */

/* style the second level hover */



/* 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:45px;left:0; width:103px;z-index:4000;}

/* another hack for IE5.5 */
* html .menu ul ul {top:57px;t\op:57px;}



/* position the third level flyout menu for a left flyout */


/* style the table so that it takes no ppart in the layout - required for IE to work */


/* style the second level links */


/* style the top level hover */



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

