/* Default colors and font */
BODY {
    background-color: #000000;
    color: #FFEEEE;
    font-family: "Comic Sans MS", Verdana, Arial, Sans-Serif;
    font-size: 11pt;
}

/* Paragraph font */
P {
    font-family: "Comic Sans MS", Verdana, Arial, Sans-Serif;
    font-size: 11pt;
}

/* Header fonts */
H1, H2, H3 {
    font-family: "Times New Roman", Times, Serif;
    text-align: center;
    width: 100%;
    filter: dropShadow(color=#666055,offX=2,offY=-1);
}
H1 {
    font-size: 28pt;
}
H2 {
    font-size: 20pt;
}
H3 {
    font-size: 14pt;
}

/* Links fonts and colors */
.links {
    font-size: 11pt;
    text-align: center;
    background-color: #443322;
}
.smalllinks {
    font-size: 9pt;
    text-align: center;
    background-color: #443322;
}

/* Center behavior */
.center {
    text-align: center;
}

/* Link colors and underline behavior */
A:link {
    color: #FFCCCC;
    text-decoration: none;
}
A:visited {
    color: #EEBBBB;
    text-decoration: none;
}
A:active {
    color: #FFDDDD;
    text-decoration: underline;
}
A:hover {
    color: #FFDDDD;
    text-decoration: underline;
}

/* Different colors for "Encyclopaedia Britannica" links */
A:link.eb {
    color: #CCFFCC;
}
A:visited.eb {
    color: #BBEEBB;
}
A:active.eb {
    color: #DDFFDD;
}
A:hover.eb {
    color: #DDFFDD;
}

/* Different colors for "External" links */
A:link.ext {
    color: #CCCCFF;
}
A:visited.ext {
    color: #BBBBEE;
}
A:active.ext {
    color: #DDDDFF;
}
A:hover.ext {
    color: #DDDDFF;
}

/* Definitions color */
.def {
    color: #FFFFCC;
}
