/*
 * Stylesheet for Joyce Gang's site
 * (c) Steve Fairhead: January 10, 2002
 */

/* Basics: */
body {
    margin-left: 5%;
    margin-right: 5%;
    color: black;
    background-color: white;
    font-family: Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,caption,table,th,tr,td {
    font-family: Arial, sans-serif;    /* browser bug workaround */
}
ul,ol {
    margin-bottom: 1em;
}
li.spaced {
    margin-bottom: 1em;
}
li {
    list-style: disc;
}
em {
    font-weight: bold;
    font-style: italic;
}
pre {
    font-family: monospace;    /* browser bug workaround */
}

/* Links: */
a:link    {
    color: blue;
    background-color: white;
}
a:visited {
    color: purple;
    background-color: white;
}
a:active  {
    color: maroon;
    background-color: white;
}
a:hover   {
    color: red;
    background-color: yellow;
}

/* Headings: */
h2,h3,h4,h5,h6 {
    color: navy;
    background-color: white;
}
h1 {
    margin-left: 0%;
    text-align: center;
    color: navy;
    background-color: yellow;
    font-size: 200%;
    font-weight: normal;
}
h2 {
    margin-left: -3%;
    font-size: 120%;
    font-weight: bold;
    font-style: italic;
}
h3 {
    margin-left: -1%;
    font-size: 110%;
}

/* Generic classes: */
.centred {
    text-align: center;
    vertical-align: middle;
}
.strong {
    font-weight: bold;
}
.highlight {
    color: red;
    background-color: yellow;
    font-weight: bold;
    font-style: italic;
}

/* Page headers/footers: */
table.page-header {
    width: 100%;
    text-align: center;
    /* border: medium solid black; */   /* uncomment for debug */
}
td.page-logo {
    text-align: left;
    vertical-align: middle;
}
td.page-title {
    text-align: center;
    vertical-align: middle;
    /* border: medium solid white; */
}
p.page-footer {
    text-align: center;
    font-size: 120%;
}

/* Form prompts: */
.form-prompt {
    color: #400040;
    background-color: white;
    font-weight: bold;
}
