/* Monica's Massage and Bodywork - style sheet addendum for printable pages

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

This style sheet hides the leftContent, rightContent, footer images, and the
printable "button". We simplify 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 v1.0
License reference: http://creativecommons.org/licenses/sa/1.0/

Copyright (c) 2005-2008, Monica's Massage and Bodywork, Youngsville, NC USA
All rights reserved.

@author Todd Warner < w e b m a s t er { a t } m o n i c a s m a s s a g e . n e t >

Last modified: $Date: 2008-04-21 13:46:07 -0400 (Mon, 21 Apr 2008) $
*/


@import url("monicasmassage.css");

body
{
    background: none;
}

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

#header,
#footer
{ 
    /* black and white this sucker */
    background: url("/media/img/main/backgrounds/flower0-kauai-2002-5-grayscale.jpg");
}

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

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


