/*css document*/

*{ 
margin: 0; /*set the margins and padding*/
padding: 0; /*for all elements to 0 with the * wildcard*/
}

body {
width: 800px; /*makes the page 800 pixels wide*/
background-color: #FFFFFF; /*sets background color to dark green*/
font-size: 120%; /*set type to 100% of the browser font*/
color: #666666; /*set font color to light green*/
line-height: 1.5em; /*set the line spacing 1.2 the size of the font*/
margin: auto; /*setting margins to auto centers page content*/
}

h1.center{ 
text-align: center;
}

p.center {
text-align: center;
}

p.smallfont { 
font-size: 80%;
}

p.bigfont { 
font-size: 400%;
}

p.middlefont {
font-size: 200%;
}

p.redfont { 
color: #FF0000;
}

p.ss { 
font-family: sans-serif; /*use system default font with no caps*/
}

p.bigspace {
line-height: 2em;
}

p.greyfont { 
color: #999999;
}