/*!
    standaloneprint.css - Setzt kein anderes CSS voraus, sollte in window* verwendet werden
*/
@media print {        
    body {
        background: white;
        font-size: 12pt;
    }
    
    .data-panel-content a:link,
    .data-panel-content a:visited {
        color: blue;
        background: transparent;
        font-weight: bold;
        text-decoration: underline;
    }
    
    .data-panel-content a:link:after,
    .data-panel-content a:visited:after {
        content: " (" attr(href) ") ";
        font-size: 90%;
    }
    
    .data-panel-content a[href^="/"]:after {
        content: " (https://arcinsys.hessen.de/arcinsys" attr(href) ") ";
    }    
   
   .noprint {
    display: none;
   }
}

body {
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
}

#printbutton {
 position: absolute;
 top: 20px;
 right: 20px;
 border: solid 1px black;
 background-color: white;
 text-align: center;
 padding: 10px 50px;
}

#printbutton a {
 font-size: 30pt;
}

#printbutton a:VISITED {
 color: blue;
}

#printbutton a:ACTIVE {
 color: blue;
}