The drop down works fine for me in IE8, but not IE7.
This looks like a z-index issue. Have a try adding:
Code:
#allContent {
margin-left: 0;
margin-right: 0;
margin-top: 4.688em;
position: relative;
z-index: 2;
}
#info {
background: none repeat scroll 0 0 white;
border-top: 0.75em solid #003366;
margin-top: -2.35em;
padding-bottom: 1.25em;
position: relative;
z-index: 1;
}
This should ensure that the drop down, which is contained within #allContent appears on top of #info.