Nice use of the CC template. Your sites are nice. I do have one suggestion. Since you are using style sheets for your fonts, browsers like I.E. will loose their user controls for font size. You are currently using 12px size font, and many users may find that a bit on the small side (depending on their monitor settings, of course). The user can not change the font size in I.E. due to the style sheet. This cuts out anyone who needs a larger font.
2 ways to fix this:
1 - Change to font size 14px, so that you have an overall larger font for those who need it OR
2 - Create a duplicate page, with a font size of 16, and offer a link to a page with "to view larger text size cick here"...sort of thing. It just means a duplicate page (save as "newpage.html") in the editor, then change the line of code in the style sheet to have larger fonts on that page. That way, you have made your web page/site accessibility friendlier....bad english exemption applied
Another option would be to make a landing page with several lines that ask the user:
Choose your desired text size. 12px
Choose your desired text size. 14px
Choose your desired text size. 16px
Choose your desired text size. 18px
then when the visitor chooses a preference it launches 1?px .html which calls 1>px.css.
I'm sure there is a way to pass a variable to the .css file and have options for the different font sizes but I don't know how, never had the need.
I tend to pick up things as I need them and then retain them whether I want to or not.