/* These are classes that can be referenced by all HTML elements by referencing the class attribute.*/
/*<h1 class="center">This heading will be center-aligned</h1> */

.center {text-align: "center"}
.right {text-align: "right"}
.comic {font-family: "comic sans ms"}
.large {font-size: 80pt}
.medium {font-size: 12pt}
.small {font-size: 10pt}
.exsmall {font-size: 8pt}
.whitecolor {background-color:white}

/*The following header elements are grouped together and set to a font, color and decoration.*/
h1
{
font-family: "comic sans ms"; 
color: "white";
}
h2,h3,h4,h5,h6
{
font-family: "comic sans ms"; 
color: "white";
}

p,table,address
{
font-family: "comic sans ms"; 
margin-left: 10pt;
}

li,td
{
font-family: "comic sans ms";
font-size: 100%;
background-color: white;
}
th
{
font-family: "comic sans ms";
font-size: 180%;
background-color: white;
}
p
{
font-family: "comic sans ms";
font-size: "12pt";
}

legend
{
font-family: "comic sans ms";
font-size: 110%;
}

/*The following anchor elements are grouped together and set to green, active/visited change to darkgreen.*/
a:link     { color:#FFFFFF }
a:visited  { color:#336699 }
a:active   { color:#FF0000 }
a:hover    { color:#FF0000 }

body
{
background-color: #336633;
}


