I could use some help here.
I have a row of floating li's with borders that align properly in Firefox 3.5.4 & IE8.0, but comes up slightly short in Chrome / Safari.
Example: Firefox
Example: Chrome

Test website is here
Notice that the right-border on the CONTACT li in Chrome ends up to the left of the picture directly below it - while the Firefox one doesn't.
I'd like to make so both browsers look identical to the Firefox one. Any ideas why they render differently?
Here is the relevant HTML
<div id="nav">
<ul class="menu">
<li class="item1">
<a href="#"><span>Home</span></a>
</li>
<li class="active item66" id="current">
<a href="#"><span>About Us</span></a>
</li>
<li class="item67">
<a href="#"><span>Commercial</span></a>
</li>
<li class="item68">
<a href="#"><span>Residential</span></a>
</li>
<li class="item69">
<a href="#"><span>Contact</span></a>
</li>
</ul>
</div>
And CSS
#nav {height:20px;background:#555;z-index:1;position:relative;width:978px;margin-left:-2px;}
#nav ul {margin:0;}
#nav li {list-style:none;float:left;height:20px;position:relative;width:20%;}
#nav li a {display:block;text-align:center;line-height:20px;color:#fff;font-weight:normal;text-transform:uppercase;font-size:11px;border-right:2px solid #fff;}
#nav li.active a {background:#f68325;}
#nav li a:hover, #nav li:hover a, #nav li.sfHover a {background:#f68325;color:#fff;text-decoration:none;}
#nav li.item1 a {border-left:2px solid #fff;}
What am I missing?
