@media screen, handheld {

	/** Alte Browser ignorieren diese Angaben **/

	body {
		background-color: #F8F8F8;
		color: black; 
		font-size: 12px;
		font-family: Helvetica,Arial,sans-serif;
		height: 100%; 
		border : 0 none inherit; 
		margin : 0; 
		padding : 0; 
		text-align: center;  
		vertical-align: top;	
	}	
	
	html {
		height: 100%; 
	}
	
	form {
		margin: 0px;
		padding: 0px;
	}
	
	img {
		border: none;
	}
	
	/** Versteckte Elemente zwecks Barrierefreiheit **/
	
	.design-hidden {
		display: none;
	}
	
	/** ANKER absolut linke obere Ecke **/
	
	.design-top { 
		position: absolute; 
		top: 0px; 
		left: 0px; 
		width: 1px;
		height: 1px;
		z-index: 998;
	} 
	
	/** GESAMTE SEITE
		dieses Element umgibt die gesamte Seite um z.B.
		eine Zentrierung zu ermöglichen
	**/
	
	.design-all	{
		position: relative;
		height: 100%;
		width: 760px;
		text-align: left;
		margin: auto;
		padding: 0px;
		background-color: #FFFFFF;
		border-top: none;
		border-right: 1px solid #000000;
		border-bottom: none;
		border-left: 1px solid #000000;
	}
	
	html>body .design-all {
		height: auto; 
		min-height: 100%;
	}
	
	.design-main {
		width:  760px;
		height: auto; 
		/* min-height: 100%; */
	}
	
	/** KOPFZEILE z.B. für Logo **/
	
	.design-head {
		margin: 0px;
		padding: 0px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #000000;
		background-color: #FEB64A;
	}
	
	/** LINKE SPALTE **/
	
	.design-left { 
		float: left; 
		width: 200px;
		padding: 0em;
		margin-top: 0px;
		margin-right: 0em;
		margin-bottom: 3em;
		margin-left: 0px;
	}
	
	/** MITTLERE SPALTE **/
	
	.design-middle {
		margin: 0px 0em 3em 201px;
		padding: 1em;	
		width: 460px;
	}
	
	/** RECHTE SPALTE **/
	
	.design-right {
		float: right;
		width: 200px;
		padding: 1em;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 3em;
		margin-left: 0px;
	}
	
	/** FUSSZEILE **/
	
	.design-empty, .design-footer {
		height: 14px;
	}
	
	.design-footer {
		position: absolute;
		left: 0;
		bottom: 0px;
		width: 752px;
		height: 14px;	
		margin: 0px;
		padding: 4px;
		vertical-align: middle;
		text-align: right;
		background-color: #666666;
		font-size: 10px;
		color: #FFFFFF;
		border-top-width: 1px;
		border-top-style: solid;
		border-top-color: #000000;
	}
	.design-footer-left {
		text-align:left;
		width: 300px;
		float:left;
	}
	.design-footer a {
		font-size: 10px;
		color: #FFFFFF;
		text-decoration: underline;
	}
	
	/** MENU **/
	
	.menu {
		padding: 0em;
		margin: 1em 1em 1em 0em;
	}
	.menu ul, .menu ol, .menu li {
		margin: 0px;
		padding: 0px;
		list-style-type: none;
	}
	.menu li {
		padding-left: 1.25em;
		padding-top: 0.40em;
	}
	.menu a {
		/* display: block;
		padding: 0.2em;
		margin: 1px; */
		color: #FF9900;
		text-decoration: none;
	}
	.menu a:hover { 
		color: black;
		text-decoration: none;
	}
	.navi-active-1 {
		color: black;
		font-weight: bold;	
	}
	
	/** Infotext rechte Spalte **/
	
	.info {
		color: #333333;
	}
	
	/** Brotkrümelpfad **/
	
	.crumb {
		font-size: 10px;
		line-height: 12px;
		color: #333333;
		margin: 0px;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
	.crumb a {
		color: #333333;
		text-decoration: underline;
	}
}

/** Druckansicht für moderne Browser **/

@media print {

	.design-head, .design-top, .design-bottom, .design-left { 
		display: none;
	}
	 
	body, html, .design-all	{
		text-align: left;   
		margin: auto;     
		width: auto;
		padding: 0px;
		border: none;
		background-color: white;
		background-image: none;
	}
	
	.design-middle {
		padding: 0px;
		margin: auto;
		width: auto;
		background-color: white;
		background-image: none;
	} 
	 
}