I did a little investigation. Your web server appears to be misconfigured. It should process css files with the mime type text/css but instead it is using text/plain.
if you run the following command from the command prompt to generate a response header, look at the Content-Type line.
[php]
wget --spider --server-response http://wpc4372.amenworld.com/themes/default/styles.css
[/php]
--10:03:46-- http://wpc4372.amenworld.com/themes/default/styles.css
=> `styles.css'
Resolving wpc4372.amenworld.com... 85.10.136.128
Connecting to wpc4372.amenworld.com|85.10.136.128|:80... connected.
HTTP request sent, awaiting response...
HTTP/1.1 200 OK
Date: Sat, 20 Jan 2007 15:03:04 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-18 mod_ssl/2.0.54 OpenSSL/0.9.7e
Last-Modified: Mon, 18 Dec 2006 17:03:34 GMT
ETag: "3fc9cc-5478-f639c580"
Accept-Ranges: bytes
Content-Length: 21624
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/plain *******
Length: 21,624 (21K) [text/plain]
200 OK
Then look at another server, like our demo, and you'll see the style sheets are resolved using text/css
[php]
wget --spider --server-response http://www.atutor.ca/atutor/demo/themes/default/styles.css
[/php]
--10:04:22-- http://www.atutor.ca/atutor/demo/themes/default/styles.css
=> `styles.css'
Resolving www.atutor.ca... 142.150.154.21
Connecting to www.atutor.ca|142.150.154.21|:80... connected.
HTTP request sent, awaiting response...
HTTP/1.1 200 OK
Date: Sat, 20 Jan 2007 15:03:41 GMT
Server: Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8d mod_jk/1.2.19 PHP/5.2.0
Last-Modified: Thu, 30 Nov 2006 15:14:52 GMT
ETag: "f464a-5478-58573300"
Accept-Ranges: bytes
Content-Length: 21624
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/css *********
Length: 21,624 (21K) [text/css]
There are a few ways to fix the problem. Check the apache/include/mime.types file and add the following line if it is not already there
[php]
text/css css
[/php]
or create a .htaccess file in the root directory of ATutor (or htdocs) with the same line. Restart your web server.