.subnav           { background: #072e69 url(../images/bkg_subnav.jpg) repeat-x; padding-top: 8px; padding-bottom: 8px }
.subnav ul       { text-align: left; list-style-type: none; margin: 0px; padding: 0px; height: auto }
.subnav li       { font-size: 12px; list-style-type: none; margin: 0px; padding: 0px }
/*

To make the links active for the full width of the DIV, I made them display: block;.
This works for everything but IE/Windows. If you give the block an explicit width of 
100%, then IE/Windows plays along. But doing this creates problems with IE5/Mac and 
Netscape/Mozilla. So I used the child selectorÒ>Ó to redefine the width to auto. 
Since IE/Windows doesnÕt understand child selectors, it ignores the rule. IE5/Mac, 
Opera and Netscape/Mozilla follow the rule, and everyone is happy.

*/
.subnav li a          { color: #f5f5f5; text-decoration: none; list-style-type: none; margin: 0px; padding: 4px 4px 4px 10px; width: 100%; display: block }
html>body .subnav li a { width: auto; }
.subnav li a:hover       { color: white; text-decoration: none; background-color: #627aa0; list-style-type: none; margin: 0px; display: block }
.subnav a:visited { color: white; margin: 0px }
.subnav li li      { font-size: 9px; padding-left: 10px }
.subnav ul ul { display: none }
