﻿/* ----------------------------------------------------------------------------------

	File: 			print.css
	Author: 		Walter Botich
	Created: 		02/22/08
	Modified:		02/22/08
	Description:	Print Styles
                    Include this in the <head> of every page or in a .NET skin folder.
	
-----------------------------------------------------------------------------------*/

/* IMPORT NEEDED FILES ----------------------------------------------------------- */
@import url("library/reset.css");
@import url("library/typography.css");
@import url("library/layout.css");

@media print {
/* GLOBALS ----------------------------------------------------------------------- */
h1 
{
    display: none;
}
/* 2 column layout */
.column
{
    float: left;
    width: 45%;
    margin: .25em .15em;
    padding: .25em;
    border: 1px solid #666666;
}
/* container for page button controls */
.controls
{
    display: none;
}

/* MAIN PAGE CONTAINERS ----------------------------------------------------------- */
/* container for all page elements */
#page 
{
    margin: 0;
    text-align: left;
}

/* header content */
#header .background
{
    display: none;
}

/* body content */
#body
{
    padding: 0;
}
    #body a, #body .button
    {
        display: none;
    }
    #body .information 
    {
        display: none;
    }

/* footer content */
#footer 
{
    display: none;
}

}