It believe it's the URLs for your background images. IE 6, and quite possibly 7, incorrectly treats relative URLs in CSS files as being relative to the document's location, rather than relative to the CSS file's location (which is the correct way according to CSS 2.1). In your case, your CSS contains paths like
../images/some-image-file.png
Relative to the CSS URL path
/bc_developers/css/global.css
this should resolve to
/bc_developers/images/some-image-file.png
but as your document is located at
/bc_developers/index.html
the path will, in IE, resolve instead to
/images/some-image-file.png
leading to the 404s described by snicker.
Changing the relative paths in your CSS from
../images/some-image-file.png
to absolute paths like
/bc_developers/images/some-image-file.png
should fix things.