/* CSS Document */

/* one way of showing a certain image on a page but not the rest with an option to hide text as well. */

img
{
display: none
}

.showimage
{
display:block;
float:left;
background-color: #FFFFFF
}

.notext
{
display: none
}

p.breakhere 
{
page-break-before: always
}