Fine ... but there is an error in the "screen.css" in line 143:
background: #FFFFFF url(<?php echo TEMPLATE_DIR;?>/images/headcut_14-over.gif) repeat;
You can't place PHP-Code inside an external css file - will not be execute.
And you are not in the need to this: keep in mind, that all paths inside the css are rellative
to the css file, so in this case you can simple go like this:
background: #FFFFFF url(images/headcut_14-over.gif) repeat;
if there is a subfolder named "images" next to the css-file.
Regards
Aldus