/********************************************************************************************************************/
/*Flexbox - Style - Bandbild und Vorstellung*/

.fb_band_wrapper_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;							/*Befehl - auf Flex stellen*/
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;					/*Befehl - Zeilenumbruch erlauben*/
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row; 			/*Anordnung - in Reihe*/
/*	min-height: 100vh;		*/				/*Höhe erzwingen - vh = xx% von view height*/
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;		/*Position alles in der Mitte zusammen*/
	margin: 2.5em 0 0 0;
}	

.fb_band_wrapper_col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;							/*Befehl - auf Flex stellen*/
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;					/*Befehl - Zeilenumbruch erlauben*/
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column; 		/*Anordnung - in Reihe*/
/*	border: 1px solid green;				/*Rahmenfarbe*/
	-ms-flex-line-pack: start;
	    align-content: flex-start;			/*Position - wirkt nur bei !!!!!!mehrzeiligem!!!!!! Inhalt!*/
}	

.fb_band_background {
	width: 100%;
	font-size: 1.2em;
	color:#CCC;
	background-color:#000;
	border: 5px solid #333;
	opacity: 1;
	filter: alpha(opacity=100); 	/*für ältere IE Browser*/	
	padding:5px 0px 5px 15px;
	background: url(../img/form-bck-mrmr-blk.jpg) no-repeat center center fixed; 		/*Bild bedeckt immer, auch bei Zoom, den ganzen Bereich!*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;		
}

.fb_band_background img{
	width:467px;
	height:350px;
	-webkit-box-shadow: 3px 3px 5px grey, -3px -3px 5px grey;
	-o-box-shadow: 3px 3px 5px grey, -3px -3px 5px grey;
	-ms-box-shadow: 3px 3px 5px grey, -3px -3px 5px grey;
	box-shadow: 3px 3px 5px grey, -3px -3px 5px grey;
	margin:15px 15px 90px 15px;
}

.fb_band_tx_ue { 
	color:white;
	font-size: 14px;
	font-weight:bold;
	text-align: left;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.fb_band_tx { 
	font-style:italic;
	font-size: 14px;
	color:#999;
}

/********************************************************************************************************************/
/*Flexbox - Style - Biografie*/

.fb_band_bio_hintergrund {
	background-color:#FFF;
	border: 10px solid #333;
	opacity: 0.95;
	filter: alpha(opacity=80); 	/*für ältere IE Browser*/	
	padding:20px 20px 20px 20px;
	margin:0 20px 20px 0;
/*	z-index:100;*/
}

.fb_band_bio_tx_ue { 
	color:#C00;
	font-size: 20px;
	font-weight:bold;
	text-align: left;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
	padding:0px 0px 20px 0px;
}

.fb_band_bio_tx { 
	color:#333;
	font-family: 'Germania One', serif, Helvetica, Verdana, sans-serif;	*/
	font-size: 18px;
	padding:0px 0px 20px 0px;
}

.fb_band_tx_hh { 
	margin: 17em 0 0 0;
}

.fb_band_tx_mh { 
	margin: 10em 0 0 0;
}

.fb_band_tx_mt { 
	margin: 0 0 0 18em;
}

/*--------------------------------------------------------------------------------------------------------------------------------------- */
/* CSS3 Stylesheet E N D E  */