/* ================================================================ 
CSS Dropdown Menu
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
=================================================================== */
.menu {width:941px; height:18px; padding-left:18px; position:relative; z-index:100; font-family:arial, sans-serif; font-size:10px; background:#002c77;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:959px; w\idth:941px; }
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;list-style-image:none;}
.menu ul ul {width:141px; padding-top:6px; background:#0083be;}
/* 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:141px; position:relative; margin-bottom:0;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:141px; height:18px; border:none; background:#002c77 url(/images/nav_divider.gif) no-repeat left; line-height:18px; text-align:center; }
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:141px; w\idth:141px;}

.menu li.padder{float:left; width:5px; position:relative; margin-bottom:0;}
.menu a.padder, .menu a.padder:visited, .menu a.padder:hover, .menu a.padder:active {display:block; cursor:default; width:5px; background:#002c77 url(/images/nav_divider.gif) no-repeat left;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#0083be url(/images/line_nav.gif) no-repeat bottom; font-size:11px; text-align:left; padding-left:24px; padding-right:24px; width:93px; line-height:13px; }
/* style the second level hover */
.menu ul ul a.drop:hover{color:#96C9E1; background: url(/images/line_nav.gif) no-repeat bottom; }
.menu ul ul :hover > a.drop {background:#0083be url(/images/line_nav.gif) no-repeat bottom; }

/* style for last row in dropdown */
.menu ul ul a.bottom, .menu ul ul a.bottom:visited {background:#0083be; padding-bottom:11px; font-size:11px; text-align:left; padding-left:24px; padding-right:24px; width:93px; line-height:13px; }
.menu ul ul a.bottom:hover{color:#96C9E1; }
.menu ul ul :hover > a.bottom {background:#0083be; padding-bottom:11px; line-height:13px; }

/* 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; width:141px;}
/* another hack for IE5.5 */
* html .menu ul ul {top:18px;t\op: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; border-collapse:collapse;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background-color:#002c77; color:#FFF; height:auto; line-height:1em; padding:6px 0 6px 0; width:141px; border:none;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:141px;w\idth:141px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{background:#0083be;}
.menu :hover > a, .menu ul ul :hover > a {background:#0083be;}

/* 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; }