/* The Franklin County Beekeepers Association

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

Copyright (c) 2008-..., The Franklin County Beekeepers Association, NC USA
All rights reserved. Used with premission into perpetuity.

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

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.

Last modified: $Date$
*/

@import url("franklincountybees.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%;
}

