@charset "utf-8";
/* CSS Document */

.menu {position:relative;background:#15476a; z-index:100; height:56px;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:100%; w\idth:100%;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none; float:right; }
.menu ul ul {width:250px;}
/* 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; list-style:none;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block; text-decoration:none; color:#fff;  padding:20px 18px;  font-size:1.2em; font-family:  Arial, Helvetica, sans-serif;}
/* a hack so that IE5.5 faulty box model is corrected */

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#ff9400}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#ff9400  color:#fff;}
.menu ul ul :hover > a.drop {background:#ff9400; color:#fff;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#ff9400;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#ff9400;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden; position:absolute;left:0; width:149px;}
/* another hack for IE5.5 */
* html .menu ul ul { top:40px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute;left:0; border-collapse:collapse;}



/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#2870a2!important; font-weight:normal!important; color:#fff; padding:5px 10px; width:150px; font-size:12px!important; font-family:Tahoma, Arial, Helvetica, sans-serif!important; border-top:1px solid #fff; }
.menu ul ul a:hover{ background:#ff9400!important; color:#fff!important;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#00a2ff; background:none;}
.menu :hover > a, .menu ul ul :hover > a {color:#00a2ff; background:none;}

/* 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;}

a.current {color:#00a2ff !important; background:none;}
.menu ul ul a.current {color:#FFFFFF !important; background:#ff9400 !important;}



