/* Style Sheets zum Einblenden von Texten über Bildern.

Die Größe der Bilder muß in den StyleSheets angeben werden.
*/

	/* für kleine Bilder */
	/* ------------------------ */
	.galerie BildText_kl {
	background: white;
	border: 8px solid white;
	box-shadow: 1px 1px 2px grey;
	float: left;
	height: 202px;
	margin: 8px;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 180px;
	}

	BildText_kl img  {
	transition: all 0.2s ease-in;
	}

	figcaption {
	background-color: rgba(0, 0, 0, 0); /* Intensität des Text-Hintergrunds */
	font-size: 100%;   /* Schriftgröße */
	height: 202px;
	margin: 0;
	opacity: 0;
	padding: 10px 0 0;
	width: 180px;
	transform-origin: bottom right;
	transform: translate(0px, -180px) rotate(180deg);
	transition: all 0.2s 0.4s ease-in-out;
	}

	BildText_kl:hover figcaption {
	opacity: 1;
	transition-delay: 0s;
	transform: translate(0px, -180px) rotate(0deg);
	}

	BildText_kl h1 {
	background: rgba(30, 109, 174, 0.8);  /* Intensität Hintergrund Überschrift */
	font-family: Arial, Helvetica, sans-serif;
	color: yellow;      /* Schriftfarbe Überschrift */
	font-size: 0.8em;   /* Schriftgröße der Überschrift */
	margin: 40px 0 0;
	padding: 0.5em;
	position: relative;
	text-align: center;
	text-transform: uppercase;  /* Ausgabe nur Großbuchstaben */
	transform: translateY(-180px);
	transition: all 0.3s ease-in-out;
	}

	BildText_kl:hover h1 {
	transform: translateY(0px);
	transition-delay: 0.4s;
	}


