﻿body
{
    margin: 0px;
    padding: 0px;
}

article
{
    margin: 0px;
    width: 900px;
    position: absolute;
    left: 50%;
    margin-left: -494px; /* (width - 86) / 2*/
}

article, footer, section, header
{
    display: block;
}

contentContainer
{
    background-color: White;
}

#articleContent
{
    padding: 10px 5px 50px 15px;
    margin-top: 80px;
    background-color: White;
}

footer
{
    font-style: italic;
}

div.commentContainer
{
    border: 1px dashed #bbbbbb;
    padding: 10px;
    margin: 10px 0px 0px 10px;
}

img.gravatar
{
    float: left;
    position: relative;
    margin-right: 10px;
}

p.commentTitle
{
    margin-top: 10px;
    font-style: italic;
    font-weight: bold;
}

span.fieldName
{
    width: 75px;
    display: inline-block;
    margin-bottom: 10px;
}

span.fieldValue
{
    width: 300px;
}

span.fieldValue textarea
{
    width: 400px;
    height: 200px;
    margin-bottom: 10px;
}

input.postButton
{
    margin-left: 75px;
    width: 400px;
}

div.postCommentContainer
{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 500px;
}

input.expandCommentButton
{
    margin-top: 10px;
    margin-bottom: 10px;
}

input.expandCommentButton, input.postButton
{
    border: 0px;
    color: White;
    font-size: 120%;
}

header
{
    color: White;
    margin-top: 20px;
}

#footerContent
{
    background-color: White;
}

div#comments
{
    background-color: White;
    padding: 10px 5px 100px 10px;
}

div.commentContent
{
    margin-left: 90px;
}

/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection
{
    color: #fff;
    text-shadow: none;
}
::selection
{
    color: #fff;
    text-shadow: none;
}


input.expandCommentButton, input.postButton
{
    background-color: #1BA1E2;
}
        
::-moz-selection
{
    background: #1BA1E2;
}
::selection
{
    background: #1BA1E2;
}

label.error
{
    font-size: 10pt; 
    margin-left: 10px; 
    color: #E51400;
}

@media print
{
    article
    {
        width: auto;
        margin: 0 5%;
        padding: 0;
        border: 0;
        float: none !important;
        color: black;
        background: transparent;
        position: inherit;
        left: 0%;
        display: block;
    }

    #articleContent
    {
        padding-top: 50px;
    }

    input.expandCommentButton
    {
        display: none;
    }

    div.postCommentContainer
    {
        display: none;
    }
}


