/* skip-nav */
.skip-nav {
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}

.skip-nav a {
    left: -99999px;
    position: absolute;
    text-decoration: none;
    top: 20px;
}

.skip-nav a:focus,
.skip-nav a:active {
    background-color: #eee;
    border: 1px dotted #333;
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    -webkit-box-shadow: 0 0 8px #222;
       -moz-box-shadow: 0 0 8px #222;
            box-shadow: 0 0 8px #222;
    color: #333;
    display: block;
    font-weight: bold;
    width: 240px;
    left: 0;
    margin: 0 auto;
    outline: 0;
    padding: 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 9000;
}

.skip-nav a:hover { text-decoration: underline; }

/* Druck / Print
   ========================================================================== */
@media print {
    
    /* Bereiche vom Druck ausschliessen */
    .skip-nav {
        display: none;
    }
    
}