/* 
    Document   : id
    Created on : Jul 19, 2010, 10:50:08 PM
    Author     : Christian
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

#content
{
/*    width: inherit;*/
}

#left_pane
{
    float: left;
    width: 8em;
    border-right-style: solid;
    border-right-width: 1px;
    margin-right: -1px;
    padding-left: .5em;
    padding-right: .5em;
}

#middle_pane
{
    float: left;
    /*    Fails to center the page so I had to replace
    with text-align: center;*/
    /*    margin: auto;*/
    text-align: center;
    width: 49em;
    border-left: solid;
    border-right: solid;
    border-width: 1px;
    padding-left: 1em;
    padding-right: 1em;
}

#right_pane
{
    float: left;
    width: 8em;
    border-left-style: solid;
    border-left-width: 1px;
    margin-left: -1px;
    padding-left: .5em;
    padding-right: .5em;
}

#menu
{
    text-align: center;
    display: block;
    background-color: rgb(111,111,111);
}

#footer, #menu
{
    clear: left;
    text-align: center;
    display: block;
    background-color: rgb(111,111,111);
}
