body {
    font: 100% Garamond, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman';
    background: #DDDDDD;
    margin: 0;

    /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center;

    /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
}

.oneColLiqCtr #container {
    width: 95%;
    max-width: 800px;

    /* this will create a container 80% of the browser width */
    background: #FFFFEE;
    margin: 0 auto;

    /* the auto margins (in conjunction with a width) center the page */
    border: 0px solid #999999;
    text-align: left;

    /* this overrides the text-align: center on the body element. */
}

.oneColLiqCtr #mainContent {
    padding: 30px;

    /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

p {
    line-height: 1.6;
}

p {
    text-indent: 2em;
}

p + p {
    text-indent: 2em;
}

p {
    margin-bottom: 0;
    padding-bottom: 0;
}

p + p {
    margin-top: 0;
}

img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0px;
    text-indent: 0;
    text-align: center;
}

.noIndent #firstparagraphs {
    padding: 0 30px;

    /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

p {
    line-height: 1.6;
}

p {
    text-indent: 0;
}

p + p {
    text-indent: 2em;
}

p {
    margin-bottom: 0px;
    padding-bottom: 0;
}

p + p {
    margin-top: 0;
}

img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0px;
    text-indent: 0;
    text-align: center;
}

a:link {
    color: #F00;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #900;
}

a:hover {
    text-decoration: none;
    color: #EED;
    background-color: #333;
}

a:active {
    text-decoration: none;
    color: #F00;
}