@charset "utf-8";
/* zenPulse CSS Framework v0.1
Written by Nate Berkopec
www.zenpulse.com
Licensed under the GPL:
   
    This file is part of the zenPulse CSS Framework.

    The zenPulse CSS Framework is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    The zenPulse CSS Framework is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Foobar; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

This stylesheet handles print media. 

*/

body {
	background: white;
	color: black !important;
	font-size: 12pt
	}

#header {
	display: none;
}

a:link, a:visited {
	color: #520;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
	}

/* The below prints the url next to the link. Thanks ALA! http://alistapart.com/stories/goingtoprint/ */
#content a:link:after, #content a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
   }

/* Don't forget to display: none your sidebars.

#sidebar {
	display: none;
}

*/

.printdelete {
	display: none;
}
#content {
	float: left;
	width: 70%;
}
#sidebar {
	float: right;
	width: 25%;
}