.menu {
z-index:1000;
font-size:11px;
margin:0;
font-family: Georgia, Times, Times New Roman, serif;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
border-top: solid #FC9; /* line at top of menu */
border-width: 0 0 0 0;
padding:0;
margin:0;
list-style-type:none;
width:152px; /* if this is changed, also amend ".menu a" & ".menu ul ul" */
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}

.menu li {
position:relative; /* position relative so that you can position the sub levels */
background:#FDE2C9; /* item background colour - static state */
height:26px;
}
/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

.menu li strong { /* style for country level link (eg Spain) */
	font-weight: bold;
	font-size: 120%;
	}


/* style the links and lines between */
.menu a, .menu a:visited, .menu a:active {
display:block; 
text-decoration:none;
width:153px; /* same as .menu ul width minus 1 pixel */
color:#039; /* item text colour - static state */
text-indent:5px;
background: #FDE2C9;
border: solid #FC9; /* line below each menu item */
border-width:0 0 1px 0;
padding: 6px 0 6px 0;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited, * html .menu a:active {background:#FDE2C9; width:154px; w\idth:153px;}

/* style the link hover */
* html .menu a:hover {
color:#960;
background:#FFF4E4;
}

.menu :hover > a {
color:#960; 
background:#FFF4E4;
}

/* style the selected link */
.menu li.selected a, .menu li.selected a:visited, .menu li.selected a:active  {
color:#039;
border: solid #FC9;
background:#FFF4E4;
border-width: 0 0 1px 0;
}

/* style the selected link */
.menu li.selected a:hover {
color:#960; 
background:#FFF4E4;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
font-size: 100%;
border-left: solid #FFF4E4;
border-width:0 0 1px 1px;
background:#FFF;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0px; /* vertical position of flyout in relation to top edge of menu item */
left:153px;  /* same as .menu ul width */
}
/* 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;
}

<!--[if IE 7]>
<style type="text/css">
.menu li {float:left;}
</style>
<![endif]-->

