/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/

/**
 * @section layout
 * @css-for (print basics)
 */
	body {
		width: 100%;
		text-align: left;
		margin: 0;
		padding: 0;
		font: 11pt \"Times New Roman\", Times, serif;
		color: #000 !important; /* we want everything in black */
		background: #fff url(none);
		background-color:#fff !important; /* on white background */
		border:0 !important; /* no borders thanks */
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-weight: 700;
		margin: .75em 0 .5em;
		text-align: left;
		page-break-after: avoid;
	}

	h1 {
		text-align: center;
		padding: 0 0 .5em;
	}

	p {
		margin: .5em;
	}
	
	/**
	 * @section links
	 * @css-for (links fuer print optimieren)
	 */
	a, a:visited, a:hover, a:visited:hover {
		color: #000;
		background: transparent;
		text-decoration: none;
	}
	
	a[href]:after {
		content:\" (Url: \"attr(href)\") \";
		background-color: inherit;
		font-style: italic;
		font-size: 11pt;
	} 
	
	*[name]:after {
		content:\" [#\"attr(name)\"]\";
		background-color: inherit;
		font-style: italic;
		font-size: .7em;
	} 
	
	*[title]:after {
		content:\" (\"attr(title)\") \";
		background-color:inherit;
		font-style:italic;
		font-size: .7em;
	} 
	
 * {
 quotes: \"\\201E\" \"\\201C\" \"\\201A\" \"\\2018\";
} 	
q:before, blockquote:before {
 content:open-quote;
} 
q:after, blockquote:after {
 content:close-quote;
}

/* This affects every tag */
* {
border:0 /* again no borders on printouts */
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class=\"noprint\"
*/
.accessibility,
.noprint
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div#content,
div#main {
display:block !important;
width:100% !important;
border:0 !important;
padding:1em !important;
}

/* hide everything else! */
div#header,
div#header h1 a,
div.breadcrumbs,
div#search,
div#footer,
div#menu_vert,
div#news,
div#sidebar  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}
/* End of 'Print' */

