﻿/* Global CSS file to standardize between browsers and with how I like things to start */
/* This should always be the first CSS file in the list */

html, body, form, fieldset, table, table th, table td
{
    margin: 0;
    padding: 0;
}

body
{
    font-family: Arial, sans-serif;
    font-size: 0.9em;
}

/* match the font size of <body> since these do not inherit */
input, select, textarea
{
    font-size: 0.8em;
}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address
{
    margin: 1em 0;
    padding: 0;
}

li, dd, blockquote
{
    margin-left: 1em;
}

form label
{
    cursor: pointer;
}

fieldset
{
    border: none;
}

img
{
    border: 0;
}

table
{
    border-collapse: collapse; /* center */
    margin-left: auto;
    margin-right: auto;
}

table th
{
    border: 0;
    vertical-align: top;
    text-align: left;
}

table td
{
    border: 0;
    vertical-align: top;
}

