@-ms-viewport {width: device-width; zoom: 1.0;}
@-o-viewport {width: device-width; zoom: 1.0;}
@viewport {width: device-width; zoom: 1.0;}



*, *:before, 
 *:after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
  }

/* FLEXBOX */

.display-flex
 {
  display: block; /* FALLBACK IE 6 7 */
  display: table; /*FALLBACK < IE 9 */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
      display: flex;
 }

/*MULTI-LINE*/

.flex-flow-wrap
 {
 -webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-flow: row wrap;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-flow: row wrap;
        flex-flow: row wrap;

 }
/* SINGLE-LINE*/
.flex-flow-nowrap
 {
 -webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-flow: row nowrap;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
 
 }
 
/* HORIZONTAL   */

 .justify-content-center
 {
   text-align: center;  /* FALLBACK  */
   -webkit-box-pack: center;
   -webkit-justify-content: center;
   -moz-box-pack: center;
   -ms-flex-pack: center;
     justify-content: center;
  } 
    
.justify-content-space-around
 {
   text-align: justify;  /* FALLBACK  */
  -webkit-justify-content: space-around; 
  -ms-flex-pack: distribute; 
   justify-content: space-around;
  }
  
  
  
  
  .justify-content-space-between
 {
 	text-align: justify;  /* FALLBACK  */
  -webkit-box-pack: justify; 
  -webkit-justify-content: space-between; 
  -moz-box-pack: justify; 
  -ms-flex-pack: justify; 
  justify-content: space-between;
  }
  
  
 .justify-content-flex-start
 {
   text-align: left;  /* FALLBACK  */ 
   -webkit-box-pack: start;
   -webkit-justify-content: flex-start;
   -moz-box-pack: start;
   -ms-flex-pack: start;
        justify-content: flex-start; 
  }
  
  
  
   /* VERTIKAL   */  
  .align-items-stretch
  {
    /*vertical-align: top;     FALLBACK  */
    -webkit-box-align: stretch; 
    -webkit-align-items: stretch; 
    -moz-box-align: stretch; 
    -ms-flex-align: stretch; 
          align-items: stretch; 
   } 
   
   .align-items-center
  {
    vertical-align: middle;    /* FALLBACK  */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
        align-items: center; 
   }
   
   .align-items-flexstart
  {
    vertical-align: top;    /* FALLBACK  */
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
     -ms-flex-align: start;
        align-items: flex-start; 
   }
   
         

         /*  2 Zeilen */
         
   .align-content-stretch
   {
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
        align-content: stretch;
    }


  .align-content-flex-start
   {
      -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
        align-content: flex-start;
    }
    
    
 .align-content-stretch
   {
       -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
          align-content: stretch;
    }


.flex-auto
  {
  	   display: inline-block; /* FALLBACK IE 6 7 */
      /* display: table-row; FALLBACK < IE 9 */
	   min-width: 10%; /*FALLBACK < IE 9 */
     -webkit-box-flex: 1;
     -webkit-flex: auto;
     -moz-box-flex: 1;
     -ms-flex: auto;
        flex: auto;
  }


.flex-11auto
  {
  	  display: inline-block; /* FALLBACK IE 6 7 */
     /* display: table-row; FALLBACK < IE 9 */
	  min-width: 10%; /*FALLBACK < IE 9 */
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }





.flex-01auto
  {
  	  display: inline-block; /* FALLBACK IE 6 7 */
     /* display: table-row; FALLBACK < IE 9 */
	  min-width: 10%; /*FALLBACK < IE 9 */
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
  }




.flexcenter, 
.flex-center

{
display: table; /* FALLBACK */
width: 100%; /*FALLBACK < IE 9 */
	
		
display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	
text-align: center;/* FALLBACK */
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
 justify-content: center;
	
	
vertical-align: middle; /* FALLBACK */
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
 align-items: center;
}



/*MASONRY */



.masonry { 



 /* DISPLAY FLEX CONTAINER   */
 display: block; /* FALLBACK IE 6 7 NEW */
 display: table; /*FALLBACK < IE 9 */

display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
/*  -moz-display: flex;
-ms-display: flex;
-o-display: flex; */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  
   width: 100%; /*FALLBACK < IE 9 */
  
  
  /* HORIZONTAL   */
   text-align: justify;  /* FALLBACK  */
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
 justify-content: space-around;
        
   
   /* VERTIKAL   */  
   vertical-align: top;    /* FALLBACK  */
     -webkit-box-align: start;  
-webkit-align-items: flex-start; 
 -moz-box-align: start;  
-ms-flex-align: start; 
 align-items: flex-start;
   
  
 /* FLEX FLOW   */
  
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-flow: row wrap;

-moz-box-orient: horizontal;
-moz-box-direction: normal;
/* -webkit-flex: row wrap; 
 -moz-flex-flow: row wrap;*/

-ms-flex-flow: row wrap;
-o-flex-flow: row wrap;
 flex-flow: row wrap;
  
 /* margin-left: -8px;  Adjustment for the gutter */
}

.masonry-brick

 {
 	
 	display: block; /* FALLBACK IE 6 7 NEW */
	 display: inline-block; /*FALLBACK < IE 9 */
	min-width: 10%; /*FALLBACK < IE 9 */
 -webkit-box-flex: 1;           /* OLD - iOS 6-, Safari 3.1-6 */
   -moz-box-flex: auto;         /* OLD - Firefox 19- */
   width: 100%;            /* For old syntax, otherwise collapses. */
-webkit-flex: 1 1 200px;     /* Safari 6.1+. iOS 7.1+, BB10 */
-ms-flex: 1 1 200px;        /* IE 10 */
flex: 1 1 200px;      /* NEW, Spec - Firefox, Chrome, Opera */
 
 
 width: 200px;
   

 /* height: auto;
  min-width: 150px;
  border: 1px dotted grey;
  border-radius: 10px;*/
  padding: 10px;
  margin: 10px; 
  
}


.masonry-brick img

{
	border: 1px solid black;
	border-radius: 10px;
}













.responsive-video {
position: relative;
padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
padding-top: 0px;
height: 0;
overflow: hidden;
border-radius: 10px;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }





.kasteln
{
font-size: 13px; font-size: 1.3rem; 
border: 1px solid #ccc; /* gold; */
/*
border: 1px dotted black;
width: 135px;
 */ 
margin-bottom: 50px; 
margin: 5px;  
padding:  5px; 
text-align: left;
}


.zentrieren
   {
	padding: 0;
	margin: 0;
	margin: auto; 
	text-align: center; 
	overflow: hidden;
	}

.left {text-align: left;}

 body{background-color: #fff;  }
 /*#B3E4FF #000;  */


/* CONTAINER */
#container
{
	
 width: 98%; 
margin: 20px auto;
background-color: #fff; 

    /*#FCF3C8 #FFFFE6; fefefe#FFE8A6; original #FFD700; */
color: #000;

line-height: 170%;
max-width:1200px;
word-spacing: 130%;
/*
border: 1px solid grey;
border-radius: 10px; */
}


/* TOP */
#top
{
padding: 0.5em 0.5em 0 0.5em;
background: #FFBF00;
background: -webkit-linear-gradient(70deg, #f40, orange, #F9EC35);
background: linear-gradient(70deg, #f40, orange, #F9EC35);
/* border-bottom: 1px solid grey; */
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;

margin-bottom: 40px;
}


#bg1
{
background: url(//www.gluehbirne.ist.org/images/grafik/sonne/120px-Sunandclouds.svg-min.png) no-repeat right top; 
min-width: 300px;
 min-height: 80px; 
 position: relative;
} 

#bg2
{
background: url(//www.gluehbirne.ist.org/images/gluehbirne/gluehbirne.svg-min.png) no-repeat left top; 
margin-top: 10px; 
margin-left: 10px;
}



#top h1
{
padding: 0;
margin: 0;
}

#top #oben {
	width: 850px;
	width: 100%;
	text-align: center;
	  margin: auto; padding: 0;}

/* weite nav flyout dropdown fuer slicknav

{width: 80px;}
{width: 80px;}
.w160 {width: 80px;}
.w80 {width: 80px;}
*/


nav
{margin-top: 30px;
margin-bottom: 30px;
display: table;
}

#content h1 
{margin-top: 20px; }
 
#leftnav div
{margin-top: 25px; }

 #rightnav div
{margin-top: 30px; }


 /* LEFTNAV */
#leftnav
{
/*font-size: 13px;*/	
clear: both;
float: left;
width: 160px;   /*160px */
/*margin: 2px;*/
padding: 0px; /*2px;  1em; */
margin: 0px;
}


#flyoutkastl {margin-top: 30px;}

#flyout {padding-left: 12px;}


/* RIGHTNAV */

#rightnav
{
/*font-size: 13px;	*/
float: right;
text-align: center;
width: 180px;
/*margin: 2px;'/
padding: 2px; /* 1em; */

}

/* CONTENT */


#content
{
float: none;
margin-left: 170px;; 
/* border-left: 1px solid grey; */
margin-right: 190px;
/* border-right: 1px solid grey; */
padding: 1em;

}


.eb,
#content h1 + p:first-letter,
#content h2 + p:first-letter
 {  
 /*color: #F0D077; */
 font-size: 200%;   
padding-right: 3px; 
 padding-left: 3px; 	
 font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; 
 /*color:  #333333;*/
    text-shadow: 3px 3px 0 #D9B800; /* #D9B800; #FFD700;*/   
 }
  
#content a:first-letter
{color: #F0D077; }
 
 #content h1 + p, #content h2 + p
 {margin-top: 15px; 
 padding-top: 15px;}


#dropline a:first-letter {color: #990000;}


#footer
{
clear: both;
display: block; /* NEW */
margin: 0;
padding: 0.5em;
color: #333;
background: #FFBF00;

border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;


background: -webkit-linear-gradient(70deg, #f40, orange, #F9EC35);
background: linear-gradient(70deg, #f40, orange, #F9EC35);
}

#leftnav p, #rightnav p { margin: 0 0 1em 0; }

#content h2 { margin: 0 0 .5em 0; }





 /*schriften und absaetze und spezielles */
 
 
 html { font-size: 62.5%; } 
 

a
	{
	color: #990000;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px; font-size: 1.4rem;
	}
	
	a:hover
	{
	color: #CC0D0D;
	
	}
		
body h1,#content h1, h1
   {
font-size: 19px, font-size: 1.9rem;
	font-family:  Arial, Helvetica, sans-serif;
	}
body h2, #content h2, h2 {
font-family:  Arial, Helvetica, sans-serif;
	font-size: 18px; font-size: 1.8rem;
	font-style:  italic;
	}
	
body h3, #content h3, h3 {
font-family:   Arial, Helvetica, sans-serif;
	font-size: 17px; font-size: 1.7rem;
	}
	
body h4, #content h4, h4
	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px; font-size: 1.6rem;
   font-style:  italic;
	}
	
	
body h5, #content h5, h5
	{
font-family:  Arial, Helvetica, sans-serif;
	font-size: 15px; font-size: 1.5rem;
	
	}	
	

body h6, #content h6, h6
	{
	font-family:  Arial, Helvetica, sans-serif;
	 font-size: 14px; font-size: 1.4rem; 
	font-style: oblique;
	}	

body, 
body p, 
#content p,  
#leftnav p, 
#top p, 
p
	{
	/*		
 font-family: minion-pro, museo-sans, "Lucida Grande", serif !important; 
font-size: 14px; 
 line-height: 170%; ' */
  		
	font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px; font-size: 1.4rem; 
    }  
#content, #content p, p	
  {
	-webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* hyphenate-limit-chars: auto 3;
 hyphenate-limit-lines: 2;*/
	}	

figure
{
margin: 0px;
padding: 0px;
}

figcaption
{
font-size: 13px; font-size: 1.3rem; 
}



img {border: 0; 
max-width: 98%;
height: auto;
border-radius: 10px; 
}

#ie8 img {width: 98%;}

.textbild {max-width: 50%;}

#ie8 .textbild {width: 50%;}

 object
  {
max-width: 98%;
height: auto;
}

#ie8 object {width: 98%;}

sup, p sup { font-weight: bold; font-size: 13px; font-size: 1.3rem; line-height:0px}
.smaller 
  {
	 font-size: 13px; font-size: 1.3rem; 
   
   }
        
hr {color : black;}
 
/*weitere ebene*/
.spezial
 {
  display: none;
	position: absolute;
	top: 100%;
	left: 0;
   text-align: left;
	
	padding: 0.5em 0 1em 0;
	border: solid 1px #ccc; /* gold; */
  }
  
.gelb 
  {
  	 border: solid 1px #ccc; /* gold; */
  	 padding: 8px;
  	 margin: 0px;
  	 border-radius: 10px; 
	}

 /* unten quellenhinweise kleiner*/
 
#container #content #quelle p, 
#quelle p
 {
	font-size: 13px; font-size: 1.3rem; 
	font-weight: normal;
 }

#quelle p a {font-weight: normal;}

#quelle sup a,
#quelle a sup
 {
	color: black;
   font-weight: normal;
  }

 #quelle
 {	
  /*  border-left: solid 1px black; */
   padding-left: 10px;
  }	
	
	#quelle h4
 {
	font-size: 14px; font-size: 1.4rem;
	font-weight: bold;
 }
	
 
    
  /* abgerundete kanten*/  
    
  .rund {border-radius: 10px;}
 
 .wichtig
   { 
     background-color: #fff; 
    border: 1px solid #ccc; 
    margin: 5px; 
    padding: 0 5px;
    margin-bottom: 10px;
    border-radius: 10px; 
  }
/* Tabellenlayout Anfang */
div#container div#content table {border-spacing: 0; border-collapse: separate;}
div#container div#content tr 
  {
    border: 1px solid #ccc;
  	padding: 0;
	border-spacing: 0px;
	}
	
 div#container div#content td, 
 div#container div#content th 
   {
   	border: 1px solid #ccc;
      padding: 5px;
		border-spacing: 0px;
	}

div#container div#content table tr:first-child th:first-child { border-top-left-radius: 10px; }
div#container div#content table tr:first-child td:first-child { border-top-left-radius: 10px; }

div#container div#content table thead:first-child td:first-child { border-top-left-radius: 10px; } 


 
div#container div#content table tr:first-child th:last-child { border-top-right-radius: 10px; }
div#container div#content table tr:first-child td:last-child { border-top-right-radius: 10px; }

 
div#container div#content table tr:last-child td:first-child { border-bottom-left-radius: 10px; } 
div#container div#content table tr:last-child th:first-child { border-bottom-left-radius: 10px; } 


div#container div#content table tr:last-child td:last-child { border-bottom-right-radius: 10px; }








div#container div#content table caption { border-top-radius: 10px; } 


/* Tabellenlayout Ende */

		
	th { background-color: gold; }
		
/* international */
  #links
   {
background-color: gold; 
background-image: url(//www.gluehbirne.ist.org/images/regenbogen/regenbogen.jpg);
background-position: 1100px;
border: 1px solid gold; 
margin: 2px; 
padding: 2px;
border-radius: 10px; 	
	}
		
		
/* Styling the Box */
.box{
    border: 1px solid black;
    padding:20px;
    margin:20px 0 0;
   /* max-height:150px;  */
    max-width:90%;
    display:none /* By Default the box is hidden */ 
    }
 
/* This selector selects the box currently targeted */     
.box:target
  {
    display:block;
    border-radius: 10px; 
     box-shadow: 5px 5px 5px  #C0C0C0;
  }

 /* ScrollToTop*/
 #scroll
  {
    position:fixed;
    right:30px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color: black;
    background-color: rgba(25, 25, 25, 0.7);
    text-indent:-9999px;
    display:none;
   border-radius:60px;
 }
 
#scroll span
  {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border: 8px solid transparent;
    border-bottom-color:#ffffff;
  }
  
#scroll:hover
  {
    background-color:#e74c3c;
    opacity:1;
 }

 /* ENDE ScrollToTop


hr {border: 4px dashed gold;
    border-style: none none dotted; 
    color: #fff;  }
    
    */
    
    hr {
    border: 0;
    height: 1px;
    background: #333;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,hsla(0,0%,0%,0)), color-stop(50%,hsla(0,0%,0%,.75)), color-stop(100%,hsla(0,0%,0%,0)));
    background: -webkit-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
    background:    -moz-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
    background:     -ms-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
    background:      -o-linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
    background:         linear-gradient(left, hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,.75) 50%, hsla(0,0%,0%,0) 100%);
}

/*  links desktop weiss*/
.whitedesktop

{ background: white; }




.shariff-button,
.shariff-button a
{
border-radius: 10px;
}

.info,
.info a
{
border-radius: 20px;
}



.shariff-button a:hover
{
border-radius: 10px;
}

.info a:hover
{
border-radius: 20px;
}


.no-borderradius #container
{

border: 10px solid yellow; 
}








@media screen  and (max-width: 900px)
{

/*  links dsmart ipad transapreant*/


.whitedesktop

{ background: transparent; }
}


