Way to go.
I'm in the process of converting from table to a pure CSS layout. Ugh, the data transfer is time-consuming, but CSS is oh-so-more flexible.
I think I see your problem. From your Benifits of Nuclear page:
Code:
<title>Freedom For Fission- the benefits of nuclear</title>
<LINK REL=STYLESHEET HREF="../fissionstyles.css" TYPE="text/css">
</head>
<body>
<!-- following code added by server. PLEASE REMOVE -->
<link href="http://us.geocities.com/js_source/div.css" rel="stylesheet" type="text/css"><script language="JavaScript" src="http://us.geocities.com/js_source/div03.js"></script>
<!-- preceding code added by server. PLEASE REMOVE -->
The way CSS works is that the last line read takes precedence. Therefore, since the Geocities CSS file loads up last, it rules.
Beat them at their own game. Put your CSS link (<LINK REL=STYLESHEET HREF="../fissionstyles.css" TYPE="text/css">) in the next line down.
Now you're suppose to put the CSS links in the head and this'll move it to the body, but... that's where they went. Just make sure you put it in before any layout or text code.