/* Print stylesheet */

/* Hide unwanted elements */
#header, #footer, #sidebar, #slideshowcontainer {
	display:none;
}

/* Force print color on element/s */
* { color: #000 !important }

/* Force font sizes for print */
h1 {
	font-size: 30pt !important;
}
h2 {
	font-size: 16pt !important;
}
p, li {
	font-size: 11pt !important;
}

/* Set layout for visible elements */
#main, #content {
	width: auto;
	margin: 0;
	padding: 0;
}

#main {
	float: none;
}

#main, .wrapper {
	overflow: visible;
}

/* Enhancement tip - add urls of links after anchor tags (doesnt work for IE6&7) */
a:after {
	content: " (" attr(href) ") ";
}

/* Disable certain backgrounds for print - by default browsers don't print backgrounds, but if set to true you can disable certain backgrounds */
html, body {
	background: #FFF;
}


/* Tip adding a print friendly logo/background:

1. Add the <img> tag to your HTML in the spot where you want it to appear
when printed:
<img src="logo.png" height="100" width="100" id="logo" />
2. Then, in the main style sheet (the one that applies when the page is displayed
on screen), add a style that hides that image:
#logo { display: none; }
3. In the print style sheet, add one last style to display the image:
#logo { display: inline; }

*/



