/* This is the styling for those who want to print the pages...no page reload required */

/* The main idea is to keep everything really plain, inline, and to hide things that just aren't needed in a printed page.  The main things will be images and navigation.

body{
    border:0;
    margin:0;
    padding:0;
}

img{
                        /* Pictures will not be printed */
    display:none;
}

.hideIt{
                        /* This table row is hidden in the web page, but needs to be shown if printed */
    width:15em;
}

.bird_list table td{
               /* Bird list table style */
    border:1px solid black;
    padding:5px;
}

#nav, #img_role{
                        /* left and right margin content isn't needed in a printed page */
    display:none;
}
