@import url("default.css");

/* I use the "link" option, rather than the "@import" to attach the "styles.css" style sheet to the page, and then import the "default.css" style sheet that contains all the style sheet content. I do this because of the IE "FOUC" bug (Flash Of Unstyled Content) This occurs whenever the page loads (the is known as the FOUC bug). By using "link" and then importing the main style sheet, we bypass this annoying bug. */


