/* This import directive is not understood by older browsers,
so it will safely hide any advanced CSS techniques. */
@import "modern.css";

/* This import directive, by specifying a media type, will be ignored by
all versions of IE, up to 6 */
/* @import url("/css/hide_from_ie.css") screen; */

/* font-size: 76% is a technique to attempt to "normalize" the
many different default browser font sizes. Font sizes are then handled
with em units, allowing for text resizing across all browsers. */
body
{
    font-family: "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
    text-align: left;
    background-color: #fff;
}

a
{
    color: #7e052b;
    background-color: inherit;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}
