/* Menu styles */
.menu {float:left;width:650px;height:41px;position:relative;z-index:100;padding-left:18px;}

/* hack to correct IE5.5 faulty box model */
* html .menu {width:650px; w\idth:650px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {width:650px;height:41px;padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:auto;background: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;width:auto;background:#213170;position:relative;font-size:14px;font-weight:bold;line-height:18px;}

/* style the links for the top level */
.menu a, .menu a:visited {float:left;display:block;color:#FDFCFC;width:auto;height:22px;padding:12px 10px 7px 10px;}
.menu a.active {color:#FDFCFC;background:#76cbd5;}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:auto; w\idth:auto;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:none;}

/* style the second level hover */
.menu ul ul a.drop:hover {background:none;}
.menu ul ul :hover > a.drop {background:none;}

/* 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:auto;top:41px;left:0px; width:auto;border-bottom:10px solid #76cbd5;}

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

/* 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:#76cbd5;width:175px;height:auto;color:#FDFCFC;font-size:12px;line-height:15px;padding:8px 15px 2px 10px;}
.menu ul ul li {background:none;}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:auto;w\idth:auto;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#FDFCFC;background:#76cbd5;}
.menu :hover > a, .menu ul ul :hover > a {color:#FDFCFC;background:#76cbd5;}
.menu ul ul a:hover {background:#76cbd5;color:#1F3170;}

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


@media screen and (-webkit-min-device-pixel-ratio: 0) {
.menu li  {
	font-size:13px;
	}

}

