/**********************************************************************************
 * Style Sheet nur für den Printer gedacht
 *
 * "When making the print stylesheet place the print CSS commands into the bottom
 * of your main CSS file. As you keep adding more commands check how your web
 * pages look on the computer screen (don't do this on a live website!).
 * Keep adding commands until you're happy with the appearance, then cut these
 * commands out of the main CSS file and paste into the print stylesheet."
 **********************************************************************************/
/*
 * Remove unwanted elements
 */
.Nav_Top, .Nav_Left, .noprint, .Footer { display: none; }

/*
 * Ensure the content spans the full width
 */
._Inhalt, .Inhalt2, .Inhalt_PDF .Seite { width: 100%; }

/*
 * Change text colour to black (useful for light text on a dark background)
 */
/*.lighttext {color: #000 }*/

/*
 * Improve colour contrast of links
 */
a { text-decoration: underline; color: #0000FF; }
a:link, a:visited { color: #781351 }


/*
 * Müssen neu positioniert werden da ansonsten das zusammenspiel mit
 * dem Header nicht funktionierte
 */
.Inhalt 
	{
		width: 100%;
		top: 110px;
		position: absolute;
/*		color: #00000;
		background: #ff0000;
		font-family: "Times New Roman", Times, serif;
		font-size: 12pt;
*/
	}


/*
 * Auch hier müssen die positionen der bereiche für den Druckern angepasst werden
 */
.Header
	{
		position: absolute;
		width: 100%;
		top: 0pt;
		left: 0pt;
		margin-left: 0pt;
		margin-right: 0pt;
	}
.Header_Left  { float: left;  width: auto; margin-left:  1em; margin-top: 1em; padding: 0em; align: left; }
.Header_Right { float: right; width: auto; margin-right: 1em; margin-top: 1em; padding: 0em; align: right; }
.Header_Middle
	{
		font-family: Comic Sans MS;Helvetica,Arial,sans-serif;
		font-size: 18pt;
		font-weight: bold;
		text-align: center;
  }

/*
 * Definition des Layouts für Bildbereiche die Rechts neber dem Text stehen sollen
 * und vom Text umflossen werden. Selbe wie in screen, allerdings wenn es nicht
 * hier definiert wurde funktionierte das drucken der Bilder nicht richtig ??
 */
.BildRechts
	{
		padding: 0px 0px 0px 0px;
		float: right;
		width: 300px;
		margin-top: 0px;
		margin-left: 5px;
		text-align: left;
	}