/* fonts.css
 *
 * Font-related styles for build-in elements, specific classes, and specific IDs.
 *
 * guidelines:
 * - NO LAYOUT STUFF OF ANY KIND!  Only font styles.  HTML tag styles go in "html.css", and all else goes in "layout.css"
 * - Stick with relative sizes (em, pt, etc.) if possible to allow for scaling.
 */

body, p, div, td, input, textarea {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 9pt;
    line-height: 10pt;
}

a {
    color: #29516A;
    text-decoration: none;
}

p a {
    text-decoration: underline;
}

a:hover {
    color: #59819A;
}

h2.red {
    color: #A00;
}

h2.blue {
    color: #5B8B9F;
}

.small {
    font-size: 0.9em;
}

.verysmall {
    font-size: 0.8em;
}