/* Defaults for entire document */
body 
    {
    font-family: sans-serif;
    margin-left: 5%;
    margin-right: 5%;
    background-color: #ffffff;
    }

/* Standard paragraph */
p 
    {
    text-indent:  2em;
    text-align:   justify;
    }

/* Left justified paragraph */
p.left
    {
    text-indent:  0;
    text-align:   justify;
    }

/* Indented paragraph */
p.indented
    {
    text-indent:  0;
    margin-left:4em;
    }

/* List item */
LI
    {
    margin-bottom: 1ex;
    }


/* Table row */
TR
    {
    vertical-align: top;
    }

/* Heading level 1 paragraph */
H1
    {
    text-indent:  0;
    font-weight:  bold;
    font-size:    large;
    }

/* Heading level 2 paragraph */
H2
    {
    text-indent:  0;
    }

/* Heading level 3 paragraph */
H3
    {
    text-indent:  0;
    text-align:   left;
    text-decoration: underline;
    }


