First things first, you don't put the body tags in the stylesheet file.
You start with:
<!--
CSS code goes here.
You end with:
-->
For linking it to your page:
Maybe it was just an error in typing your post, but if this is the real code:
Code:
<LINK REL=stylesheet HREF="main.css" TYPE="text/css>
then you are missing your last quotation mark after the type, which should become:
Code:
<LINK REL=stylesheet HREF="main.css" TYPE="text/css">
Also, just for sake of simplicity and organization, put your body declarations together.
I.E.
Code:
body {cursor: crosshair;}
and
Code:
BODY
{
scrollbar-3dlight-color: #ff9999;
scrollbar-highlight-color: #ffcccc;
scrollbar-face-color: #ff9999;
scrollbar-shadow-color: #ff9999;
scrollbar-darkshadow-color: #ffffcc;
scrollbar-arrow-color: #ff9999;
scrollbar-track-color: #ffffcc;
}
becomes
Code:
BODY
{
cursor: crosshair;
scrollbar-3dlight-color: #ff9999;
scrollbar-highlight-color: #ffcccc;
scrollbar-face-color: #ff9999;
scrollbar-shadow-color: #ff9999;
scrollbar-darkshadow-color: #ffffcc;
scrollbar-arrow-color: #ff9999;
scrollbar-track-color: #ffffcc;
}
Oh yeah, one last simple detail, if you are validating for XHTML, then in your link, you would need to end it in its own tag, better illustrated than explained.
Code:
<LINK REL=stylesheet HREF="main.css" TYPE="text/css" />
That should pretty much take care of your CSS woes for now.
Good luck.