/* Core assumptions - Default declarations we almost never want to change */

object {outline:none} /* eliminate the outline around a clicked flash piece */
a img { border: none;} /* do people really want borders with the default outline color around their images? I don't think so */
form { margin: 0; padding: 0;} /* these never render a consistent magin/padding across browsers */



/* General Typography */
body {
    font-family: "Arial", Verdana, sans-serif;
    color: #4D4D4D;
    font-size: 0.75em; /* 12px */
    background: white;
}

form th {
    text-align: right;
    width: 75px;
    font-size: 10px;
}
form td {
    font-size: 0.8em;
}
form ul.errorlist {
    list-style-type: none;
    float: right;
    color: red;
}

