/* CSS Document */

/* one way of showing a certain image on a page but not the rest with an option to hide text as well. */



#menu, #topbanner, #footer
{
display: none;
}



/* remove the "postion" attr. if n/a */
.showimage
{
display:block;
position: absolute; top: 100px; left: 100px;
}

.notext
{
display: none;
}

p.breakhere 
{
page-break-before: always;
}



