Aaand.. what do you want us to do with that? It looks like you got yourself a 'template'.
Here's a tip: Take away the <style> tags, copy/paste the code into a file with .css extension, and save. On the file where you want the CSS 'template' to have effect, write in head section
CODE
<link rel="stylesheet" type="text/css" href="path/to/css/file" />
and it will work there. And make the code more readable. Here's a good readable 'format' for it.
CODE
body {
whatever;
whatever;
whatever;
}
a {
whatever;
whatever;
}
And uncapitalize the tag names. It's annoying.
Try to make your own stylesheet. You find something doesn't work for you, you want to go back to www.csscreator.com and take 5+ minutes doing everything when all it could be is a misprint? If you have a problem, just google it.