crutledge, the path to the CSS file is still wrong. You're current procedure relies on Tidy to fix it for you.
First you had this:
Code:
href="../Styles/"main.css"
then this:
Code:
href=../Styles/"main.css"
but the correct way is like this:
Code:
href="../Styles/main.css"
Notice all the quotes and their positions.