This is the image you want in the background, right?
Code:
body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 25%;
	color: #000000;
	background-color: #e5edf5;
        background-image: url(/domain/cart.bnbsoccer.com/html/includes/templates/custombnb/images/bikini.gif);
	}
The best way to specify background images in your stylesheet is like this:

url(../images/bikini.gif)
Code:
body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 25%;
	color: #000000;
	background-color: #e5edf5;
        background-image: url(../images/bikini.gif);
	}