Your logowrapper has a height value of 80px yet your header image is 110px...this is causing the breadcrumb section that should have the background to appear up behind the image and since the breadcrumb background image is not so long in height...it's not appearing
stylesheet.css line 40:
Change
Code:
#logoWrapper {
background-color:#FFFFFF;
height:80px;
line-height:106px;
}
to
Code:
#logoWrapper {
background-color:#FFFFFF;
height:110px;
line-height:106px;
}
and your background for the breadcrumbs section should appear in the right place :)