
@font-face {
font-family: myFirstFont;
src: url(ABeeZee-Regular.otf);
}
* {
font-family: myFirstFont;
}

												/*         v  nach oben Initiale setzen */
p:first-letter{display:block;float:left;margin:2px;padding:6px 2px;color:teal;font-size:250%}

body {

background: #fffee2 url(hefte-bilder/ws-logo.jpg) no-repeat fixed right bottom;
}
h1 {
	color: teal; 
	font-weight: lighter; 
	line-height: 150%; 
font-size: 2em;
letter-spacing: 0.025em;
	
	
	}


p {									/* Grundschrift */
line-height: 150%; 
font-size: 18px;
font-weight: lighter; 
color: black;
letter-spacing: 0.05em;
}

p1 {									/* Grundschrift */
line-height: 150%; 
font-size: 18px;
font-weight: lighter; 
color: teal;
letter-spacing: 0.02em;
}

								/* Schildchen ab hier */

a.tooltip {
  position: relative; 
}
a.tooltip:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 20%;
  
  background: #fff959;
  /* background: #59B14B;*/
 padding: 5px 10px;
  color: #2300ff;
  font-size: 14px;
 -webkit-border-radius: 5px;
 -moz-border-radius : 5px;
 border-radius : 5px;
 white-space: nowrap;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
 -moz-transition : all 0.4s ease;
 transition : all 0.4s ease;
}
a.tooltip:before {
 content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #59B14B;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition : all 0.4s ease;
  transition : all 0.4s ease;
  opacity: 0;
  left: 30%;
  bottom: 90%;
}
a.tooltip:hover:after {
  bottom: 100%;
}
a.tooltip:hover:before {
  bottom: 70%;
}
a.tooltip:hover:after, a:hover:before {
 opacity: 1;
}
