How big is the misalignment you see? I see about a 3px shift (in Firefox).
This is caused by trying to specify too many properties. In your stylesheet, change #navCatTabsWrapper as shown
Code:
#navCatTabsWrapper {
background-image: url(../images/nav_cat_bg_2.jpg);
background-repeat: no-repeat;
/*margin-top: 220px;
margin-bottom: 0px;*/margin: 220px -3px 0;
height:50px;
/*width: 964px;*/
background-color: #000;
font-weight: bold;
font-size: 110%;
font-family: verdana;
vertical-align: middle;
border-style: solid;
border-color: #fff;
}
Specifying a width causes the border to be added to the width. It will default to 100% anyway. The negative side margin pulls the border out to match the headerWrapper border.
Bookmarks