/* CSS Document */
/* NOTES:____________________________________________
 * This document is to format printing which will delete the navigation
 * and allow the text to be black, 100% wide with a larger font size. 
 *
 * Last updated 10/27/08
 *
 * List of pages using this CSS:
 * companyprofile.html,	auditions.html,	actfaqccl.html,	actfaqncl.html,
 * news_all.htm
 */

@media print {
	#content {
		width: 100%;
		color: black;
		margin: 0;
		font-size: 12px;
		}
	#longinner {	/* for news_all */
		width: 95%;
		color: black;
		margin: 0;
		font-size: 12px;
		}
	#longcontent {	/* for news_all */
		width: 100%;
		margin: 0;
		overflow: visible;
		}
	#content span.hide { /* prints text being hidden from the browser */
		display: inline;
		}

	p.newspic {
		margin: 2px 0 2px 0;
		text-align: center;
		clear:right;
		}
	b.back, #sidebar, p.right, p.bottomnav, div.hidefromprint, h1.header {
		display: none;
		}
	hr.green {
		color: #CCC;
		}
	h2.red {
		color: black;
		}
	a {
		color: black;
		font-weight: normal;
		}

	} /* closing brace of @media */
