I am viewing at 1024 and your image is only 760px - and displays as such you can re-do the image and make wider or try this
Code:
#logoWrapper {
width: 100%;
height: 110px;
background-color: #ff9900;
background-image: url(http://www.wisdomtravelers.com/header_bg.jpg);
background-repeat: no-repeat;
text-align: auto;
}
To avoid later issues you should also use relative links for images
Place images in includes/templates/your_template/images dir and use this to access
Code:
background-image: url(../images/header_bg.jpg);