/* On small smartphones with low CSS device-width, the text is scaled too small. Increase text size for those devices. */
@media only screen 
	and (max-device-width: 400px) {
		body {font-size: 20px;}
		/* .floatingbutton {visibility: hidden;} Versteckt leider auch bei Iphone */
	}
	
/* Bilder in voller Container-Breite, die runter skaliert werden wenn das Display zu klein ist für die Bildbreite */	
.imagefullwidthscaledown {max-width:100%;  height:auto;}	
	
/* Breadcrum navigation */	
.breadcrumbs{
  font-size: 80%;
  padding: 0px;
  margin-top: 15pt;
  margin-bottom: 10pt;
  text-align: right;
}

/* A box (for hints) */
.box{
   border-width:1px;
   border-style:solid;
   border-color:#000000;
   padding:5pt;
}

/* Box für Inhaltsverzeichnis */
.tocbox {
	float: right;
	border: 1px dashed #265928;
	margin-left: 2em;
	margin-bottom: 0.8em;
	padding: 0.5em;
/* Unterüberschriften im TOC durch <div style="margin-left: 1em;">Unterüberschrift</div> */
}

/* linklist: Vertikale Auflistung von Links */
table.linklist td {
	/*padding-bottom:10pt;*/
	padding-bottom:0.9em;
}
ul.linklist li {
	padding-bottom:0.9em;
}
ul.linklist_huge li {
	padding-bottom:0.9em;
	font-size: larger;
}
.linkdescriptionheader {
	/* used for links page */
	font-size: larger;
}

/* Links unter einer Überschrift */
.subheadinglinks {
	/* for subheading-links, and big link-hints between texts (such as picture-page-hints in reports) */
	font-size: 150%;
	line-height: 170%;
}

/* Informationen/Links unter einem Artikel */
.infobottom {
	/* Information at the bottom of pages */
	font-size: 140%;
}

/* Header that lists alternative languages */
.languageheader {
	font-size: 140%;
	/*margin-top: 15pt; Bringt nichts da nur in div eine Auswirkung */
}

/* Menü oben auf der Seite */
.navigationheader {
	font-size: 120%;
	line-height: 150%;
	text-align: center;
}

/* Unterschrift unter Artikeln */
.signature {
	/* For signatures under articles */
	font-size: 160%;
	margin-left: 4em;
	font-family: 'Comic Sans MS', cursive, sans-serif;
}

/* Floating action button für Shop */
.floatingbutton {
   width: 80px;
   height: 80px;
   background-color: #689f38;
   border-radius: 50%;
   box-shadow: 0 6px 10px 0 #666;
   transition: all 0.1s ease-in-out;
    
   position: fixed;
   right: 40px;
   bottom: 80px;
}
 .floatingbutton:hover {
   box-shadow: 0 6px 14px 0 #666;
   transform: scale(1.05);
}

/* b Sprechblasen für den Einleitungstext */
.speechbubble {
	display: inline-block; 
	color: #000;
	background-color: #DDC16E; 
	border: 2px solid #265928;
	padding: 15px;
	border-radius: 20px;
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	position: relative;
}
.speechbubble:after {
	content: "";
	display: block;
	background-color: #DDC16E;
	border: 2px solid #265928;
	border-width: 0 0 2px 2px;
	width: 24px;
	height: 24px;
	/* box-shadow: 5px 0 5px rgba(0,0,0,.5); */
	position: absolute;
	bottom: -15px;
	left: 40px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
}

/* Search design based on the nice examples at http://www.textfixer.com/tutorials/html-search-box.php */
.search{
 padding: 0;
 font-size: 70%;
 margin-top: 0pt;
 margin-bottom: 5pt;
 font-family: Arial, Helvetica, sans-serif;
}
.searchbutton{
	margin: 0;
	margin-left: 4pt;
	padding: 3px 5px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	color: #FEF3C7; /* for the text */
	border: solid 1px #265928; 
	background: #265928;
	background: -webkit-gradient(linear, left top, left bottom, from(#3B8B3E), to(#265928));
	background: -moz-linear-gradient(top,  #3B8B3E,  #265928);
	border-radius: 5px 5px;
}
/* Fixes submit button height problem in Firefox */
.searchbutton::-moz-focus-inner {
	border: 0;
}
.searchinput{
	margin: 0;
	padding: 2px 5px;
	background: #DDC16E;
	/* To get a round text input box: 
		border: 1px solid #265928;
		border-radius: 5px 5px; */ 
}