@import url(basic.css);
@import url(format.css);

/*	------------------------------------------------	
	This page will be read by all browsers with some
	CSS support (e.g. Netscape 4).  Using the import
	command to grab basic.css hides declarations in
	basic.css from everything that cannot support
	high-level CSS.
------------------------------------------------	*/

body {
    background-color: #0A0A0A;
    font-size: 62.5%;	/* sets default font size to 10px = 1em */
    font-family: tahoma, verdana, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/*  --------------------------- */
/*  Styles for the footer nav and copyright */
p.footer-nav {
    color: #C0C0C0;
    font-size: 1.2em;
    text-align: center;
    padding: 0;
    clear: both;
}


p.copyright {
    text-align: center;
    color: #CCC;
    font-size: 1.0em;
}

