/* Comments look like this in css files */

div.container	/* div.container is the overall size and backbone of the page */
{
width:800px;
margin-left:50px;
}

div.header,div.footer	/* takes care of top and bottom of page */
{
padding:0.5em;
color:white;
clear:left;
}

div.margin
{
float:left;
width:75%;
margin:5;
padding:1em;
}

td.standard
{font-family: verdana, helvetica, tahoma, georgia;
font-size: 80%;
font-color: black
;
}

p.standard 
{
font-family: verdana, helvetica, tahoma, georgia;
font-size: 80%;
font-color: black;
}

/* Set the link hover behavior */
a:link {color:#6600FF; text-decoration: none}
a:visited {color:#993300; text-decoration: none}
a:hover {color: #33FFCC; text-decoration: underline}
a:active {color: lightred; text-decoration: none}

