/* 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, td, li, input, textarea {
    font: 13.34px helvetica,arial,freesans,clean,sans-serif;
    line-height: 1.3em;
}

li {
    line-height: 1.5em;
}

a {
    color: #29516A;
    /*text-decoration: none;*/
}

p a {
    text-decoration: underline;
}

a:hover {
    color: #59819A;
}

.small {
    font-size: 0.8em;
}

.subdued {
    color: #AAA;
}

.required {
    color: #F00;
}