/* CSS Document */
body
{
 color:#000;
 background:#fff;
 }
 
/* don't show images, the navigation and address (if applicable)*/
img, div#nav, address
{
display: none;
 }

#content
{

position: absolute; top: 100px; left: 100px;
width: 6in;
margin: 1px 1px 1px 1px;
}

/* in case I want to show a certain image - remove the "postion" attr. if n/a */
#showimage
{
display:block;
position: absolute; top: 100px; left: 100px;
}

/* optional: in case I want to hide some text */
.notext
{
display: none;
}


/* position the print page break (doesn't work for netscape navigator 6) */

h1.breakhere
{
page-break-before:always;
}



