/* remove all the bullets, borders and padding from the default list styling */
#topbox ul {
padding:0;
margin:0;
list-style-type:none;
}

#topbox ul ul {
width:220px;
}
#topbox ul li{
width:162px;
padding:0px 0px 0px 1px;
}



/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#topbox li {
float:left;
width:162px;
position:relative;
}


/* style the links for the top level */
#topbox ul a, #topbox ul a:visited {
text-align:left;
/*font-weight:bold;*/
display:block;
padding:6px 0px 0px 0px;
font-size:14px;
text-decoration:none;
height:38px;
border-top:8px solid #053876;
color:#053876;
}

/* style the links for the top level act*/
#topbox ul a.drop, #topbox ul a.drop:visited {
text-align:left;
/*font-weight:bold;*/
display:block;
padding:6px 0px 0px 0px;
font-size:14px;
text-decoration:none;
height:38px;
border-top:8px solid #9cb0c9;
/*background:#f0f0f0;*/
color:#000;
}

#topbox ul a.drop, #topbox ul a.drop:visited {
text-align:left;
/*font-weight:bold;*/
display:block;
padding:6px 0px 0px 0px;
font-size:14px;
text-decoration:none;
height:38px;
border-top:8px solid #9cb0c9;
/*background:#f0f0f0;*/
color:#000;
}




/* style the top level hover */
#topbox ul a:hover{
border-top:8px solid #9cb0c9;
color:#000;
}
#topbox ul:hover > a{
border-top:8px solid #9cb0c9;
color:#000;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #topbox a, * html #topbox a:visited {
width:162px;
w\idth:162px;
}



/* style the second level links */
#topbox ul ul a, #topbox ul ul a:visited {
font-size:12px;
font-weight:normal;
background:#dee7ee;
height:auto;
border-top:2px solid #e6edf2;
border-left:2px solid #e6edf2;
border-bottom:2px solid #969ca1;
border-right:2px solid #969ca1;
width:220px;
padding:2px 0px 2px 0px;
/* yet another hack for IE5.5 */
}
* html #topbox ul ul a{
width:220px;
w\idth:220px;
}


/* style the second level act */
#topbox ul ul a.drop, #topbox ul ul a.drop:visited {
background:#053876;
color:#fff;
}


/* style the second level hover */
#topbox ul ul a:hover{
background:#053876;
color:#fff;
border-top:2px solid #4a6897;
border-left:2px solid #4a6897;
border-bottom:2px solid #081b39;
border-right:2px solid #081b39;
}
#topbox ul ul :hover > a {
background:#053876;
color:#fff;
border-top:2px solid #4a6897;
border-left:2px solid #4a6897;
border-bottom:2px solid #081b39;
border-right:2px solid #081b39;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#topbox ul ul {
visibility:hidden;
position:absolute;
height:0;
top:46px;
left:0;
width:220px;
}
/* another hack for IE5.5 */
* html #topbox ul ul {
top:46px;
t\op:46px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#topbox table {position:absolute; top:0; left:0;}


/* make the second level visible when hover on first level list OR link */
#topbox ul li:hover ul, #topbox ul a:hover ul, #topbox ul a.drop:hover ul, a.drop:hover ul{
visibility:visible;
}
