/* Enter Your Custom CSS Here

   1. Textfont und Zeichengröße
   2. Untermenuwahl verbreitert */

body,
button,
input,
select,
textarea {
	background: #fff;
	color: #333a42;
/* Normaltext von serif auf sans-serif und font-zise auf 16px umgestellt:
  font-family: "Noto Serif", Georgia, Times, serif; dann Raleway, Arial, Helvetica, sans-serif;
	font-size: 15px; */
	font-family: Raleway, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.5rem;
	line-height: 1.8;
} 

.nav-menu ul ul {
/* Untermenu-Wahl von 180 auf 230 verbreitert:
  	width: 180px; */
		width: 230px;
}

/*Farbe der Links ist der Textfarbe sehr ähnlich, vorher #426f86 dubkelblau oder #86C5FF hellblau und jetzt #7b98bf */
a {
	color: #7b98bf; 
	text-decoration: none;
	-webkit-transition: color 0.1s linear;
	-moz-transition: color 0.1s linear;
	-ms-transition: color 0.1s linear;
	-o-transition: color 0.1s linear;
	transition: color 0.1s linear;
}

.widget-title {
/* Textfarbe auf auf das Dunkelblau vom Logo umstellen: */
  color: #0024FF !important;
}

/* Tabellen ohne Umrandungen anzeigen 0px */
table {
	background-color: transparent;
	border: 0px solid #ddd;
	margin-bottom: 1.8em;
	max-width: 100%;
	width: 100%;
}

td,
th {
	border: 0px solid #dddddd;
	line-height: 1.428571429;
	padding: 8px;
	vertical-align: top;
}

/* Headerphotoplatz von 220px Höhe auf 253px vergrößert, damit ohne Headertext 
das Headerphoto in seiner Höhe groß genug angezeigt wird */
	.site-header {
		min-height: 280px;
	}