/* -----------------------------------------------------------------------


 Blueprint CSS Framework 1.0.1
 http://blueprintcss.org

   * Copyright (c) 2007-Present. See LICENSE for more info.
   * See README for instructions on how to use Blueprint.
   * For credits and origins, see AUTHORS.
   * This is a compressed file. See the sources in the 'src' directory.

----------------------------------------------------------------------- */

/* print.css */
@media print
{
	body
	{
		font-size: 90%;
		color: #333333;
		-webkit-print-color-adjust: exact;
	}
	h1, h2, h3, h4, h5, h6
	{
		color: #000000;
	}

	.box-shadow,
	.box-shadow-thin
	{
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
	}

	.no-print
	{
		display:none;
	}


	/* Form styles */
	div.form
	{
		background-color: #F5F5F5;
	}

	/* Detail View styles */
	.detail-view
	{
		background-color: #F5F5F5;
	}

	/* Grid View styles */
	.grid-view
	{
		background-color: #F5F5F5;
	}

	/* List View styles */
	.grey
	{
		background-color: #CCCCCC;
	}
	.light-grey
	{
		background-color: #F5F5F5;
	}

}