/* highlight current section on the dropdown menu */

.menu a.menu_act,
.menu a.menu_act:visited,
body#home a#menu_nav_home,
body#about_us a#menu_nav_about_us,
body#products_services a#menu_nav_products_services,
body#product_support a#menu_nav_product_support,
body#media_centre a#menu_nav_media_centre,
body#investors a#menu_nav_investors,
body#contact_us a#menu_nav_contact_us,
body#site_map a#menu_nav_site_map {
background-color: #333;
color:#fff;
}

/* CSS Document - FOR TOP DROPDOWN MENU */
.menu {
width:683px; 
/*font-size:0.85em;*/
position:relative;
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:97px;
}
/* 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:97px;*/
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
float:left;

display:block;
/*font-size:11px;*/
text-decoration:none; 
color:#fff; 
/*width:86px;*/ 
height:20px; 
border:1px solid #fff; 
border-width:0px 0px 0px 0;
background-color:#5780ae; 
padding-left:10px; 
padding-right:10px;  /* experiment 070124 */
line-height:19px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:150px;
w\idth:139px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#D8E5F1 url(drop0000.gif) bottom right no-repeat;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background-color:#5780ae; 
background-image:url(drop0000.gif);
background-position: bottom right; 
background-repeat: no-repeat;
}
.menu ul ul :hover > a.drop {
background:#5780ae;
background-image: url(drop0000.gif);
background-position: bottom right;
background-repeat:no-repeat;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background-color:#D8E5F1;
color:#000080
}
/* style the third level hover */
.menu ul ul ul a:hover {
background-color:#5780ae;
}


/* 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:20px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:20px;
t\op:20px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0;
width:97px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* 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;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background-color:#5780ae; /*xxxxxxxxxxxxxx*/
border-bottom:#FFFFFF 1px solid;
border-left:#FFFFFF 1px solid;
border-right:#FFFFFF 1px solid;
color:#fff; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover  (IE6) */
.menu a:hover, .menu ul ul a:hover{
/* color:#D3E03C; green */
color:#000080;
/*background:#5780ae;*/
background:#D8E5F1;
text-decoration:none;
}
/* (FF) */
.menu :hover > a, .menu ul ul :hover > a {

color:#000080;
background:#D8E5F1;
}

/* 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;
}
body {
	font-family: Arial, Helvetica, sans-serif;
}


/* not strictly for the dropdown... */
/* highlight current page on the lefthand menu */
#pagenoinsection_1 a#page_1,
#pagenoinsection_2 a#page_2,
#pagenoinsection_3 a#page_3,
#pagenoinsection_4 a#page_4,
#pagenoinsection_5 a#page_5,
#pagenoinsection_6 a#page_6,
#pagenoinsection_7 a#page_7,
#pagenoinsection_8 a#page_8,
#pagenoinsection_9 a#page_9,
#pagenoinsection_10 a#page_10 {
background-color: #333;
}

#pagenoinsection_1 a#page_1:hover,
#pagenoinsection_2 a#page_2:hover,
#pagenoinsection_3 a#page_3:hover,
#pagenoinsection_4 a#page_4:hover,
#pagenoinsection_5 a#page_5:hover, 
#pagenoinsection_6 a#page_6:hover,
#pagenoinsection_7 a#page_7:hover,
#pagenoinsection_8 a#page_8:hover,
#pagenoinsection_9 a#page_9:hover,
#pagenoinsection_10 a#page_10:hover
 {
text-decoration:underline;
color:#fff;
}


