/* The Carolina Bee Company - style sheet (minty)

You can have a "screen" stylesheet and a "print" stylesheet in the same xhtml
file.
    
    <link rel="stylesheet" type="text/css" href="XXX.css" title="Default" media="screen" />
    <link rel="stylesheet" type="text/css" href="XXX-printable.css" title="Default" media="print" />

This style sheet hides the leftContent, rightContent, footer images, and the
printable "button". We should simplife the graphics to be black and white and
remove the page background and borders. The "page" area is fixed to 6.5 inches
maximum.

Style sheet released under the Creative Commons ShareAlike License v2.5
License reference: http://creativecommons.org/licenses/by-sa/2.5/

Copyright (c) 2004-2008, The Carolina Bee Company, Youngsville, NC USA
All rights reserved.

@author Todd Warner <todd { a t } c a r o l i n a b e e s .com>

Last modified: $Date: 2008-05-05 23:32:11 -0400 (Mon, 05 May 2008) $
*/

@import url("carolinabees.css");

body
{
    background: none;
}

#page
{
    /*
    min-width: 4.5in;
    max-width: 6.5in;
    */
    width: 900px;
    background: none;
    border: none;
}

#leftContent,
#rightContent,
.printbutton,
.officepix,
.adfloatright,
#footer img,
#webring
{
    display: none;
    visibility: hidden;
}

#centerContent
{
    float: none;
    width: 100%;
}

