@CHARSET "UTF-8";
/* ---------------------------------------------------------------------------------------------------- */

.header {
	/* Rahmen */
	border-left: 0.1px solid black; border-right: 0.1px solid black; border-bottom: 0.1px solid black;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	/* box-shadow: 4px 4px rgba(0, 0, 0, .3); */
	
	/* Hintergrund */
	background: rgba(0, 0, 0, 0.9);
	
	/* Größe und Position */
	height: auto; width: 100%;
	position:fixed;
    top:0px;
    overflow: auto;
    
    /* Schriftausrichtung */
	text-align: center; 
	
	/* Innenanbstand */
    padding-top: 15px;
    padding-bottom: 0px;
    
    /* Ebene */
    z-index: 100;
}
