/* Cascading Style Sheet */
/* font-size = xx-large x-large large medium small x-small xx-small */
/* font-weight = bold normal */
/* font-style = normal italic */
/* text-decoration = none underline overline line-through */

#sitebrandingarea {  /* rule for sitebrandingarea only = */
    /* background-color: #66cc00; */
    font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
    color: blue;
    font-size: x-large;
    font-weight: bold;
}

#taglinearea {  /* rule for taglinearea only = */
    background-color: #ffccff;
}

.fun {  /* rule for all fun elements = */
    font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
    color: green;
    font-size: large;
}

body {  /* rule for all body elements = */
/*    background-image:url('http://www.gmacfadden.com/images/background.bmp');  */
    background-color: #ffff99;
    font-family: Verdana, Helvetica, Arial, sans-serif;
}



h1 {  /* rule for all h1 elements = */
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    color: red;
    font-size: x-large;  
}

h2 {  /* rule for all h2 elements = */
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    color: blue;
    font-size: medium;
}


p {  /* rule for all paragraphs = */
    font-weight: bold;
    font-size: small;
    color: navy;
}

a {
    font-weight: bold;
}
a:link {
    color: red;  /* color for untouched links */
}
a:visited {
    color: gray;  /* color for previously visited links */
}
a:hover {
    text-decoration: none;
    color: white; /* color for hovered over links */
    background-color: navy
}
a:active {
    color: aqua; /* color for active links */
    background-color: navy
}

