/* PRINT CSS */

/* This CSS file hides unwanted elements when a page is printed out,
by overriding styles set in pagelayout.css */

body
{
    font-size: 11pt;
    background: none;
}

body, #main_column
{
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: none;
	float: none !important;
    width:100%;
    text-align:left;
}


h1, h2, h3, span
{
	background: none;
	color: black;
    border: none;
}

h2{ border-bottom:1px solid #CCCCCC; }


div#search, div#quick_menu, div#top_menu, div#side_column, div#banner, div#footer
{
    display: none; /* Hide elments not wanted on a printed page */
}

div#logo
{
	display: block;
}


