﻿@media all {
/* Barrierefreiheit */
	.invisible {
		position: absolute; 
		left: -10000px; 
		top: auto; 
		width: 1px; 
		height: 1px; 
		overflow: hidden;
	}
	
	/**
	* @section Accessibility Module
	*
	* (en) skip links and hidden content
	* (de) Skip-Links und versteckte Inhalte
	*/

	/* (en) classes for invisible elements in the base layout */
	/* (de) Klassen für unsichtbare Elemente im Basislayout */
	.ym-skip,
	.ym-hideme,
	.ym-print {
		position:absolute;
		top:-32768px;
		left:-32768px; /* LTR */
	}

	/* (en) make skip links visible when using tab navigation */
	/* (de) Skip-Links für Tab-Navigation sichtbar schalten */
	.ym-skip:focus,
	.ym-skip:active {
		position:static;
		top:0;
		left:0;
	}

	/* skiplinks:technical setup */
	.ym-skiplinks {
		position:absolute;
		top:0px;
		left:-32768px;
		z-index:1050;
		width:100%;
		margin:0;
		padding:0;
		list-style-type:none;
	}
	
	.ym-skiplinks a {
		padding: 25px;
		color: #FFF;
		background-color: #196bac;
		text-decoration: none;
	}

	.ym-skiplinks .ym-skip:focus,
	.ym-skiplinks .ym-skip:active {
		left:32768px;
		outline:0 none;
		position:absolute;
		width:100%;
	}
}