Probably not. But you can combine both the "background-color" and "background-image" into one definition:
background:#322f30 url(http://127.0.0.1/images/team_images/background.jpg) repeat left top;
Basically it says:
background: <default color> url(<url of image>) <repeat type> <position of image horizontally> <position of image vertically>
The "repeat type" is one of:
repeat, repeat-x, repeat-y, or no-repeat
Also note that the first " inside the url() for the image ends the "style" section of the <tr> tag. Look at the html in a text editor with syntax highlighting:
<tr style="background-color: #322F30; background-image: url("http://127.0.0.1/images/team_images/background.jpg")">
<td>
<table align='center'>
<tr>
You should either not use quotes (it's acceptable) or change the quotes either for the style attribute, or the quotes used in the url() call.