@charset "utf-8";

/* Farben: = = = = = = = = = =
Orange: #ff6600 / #F60
Orange Sliknav: #F90
Grau Schrift: #444444
Dunkelgrau: #333
Mittelgrau: #666
Grau Seitenhintergrund: #999
Dunkelblau: #036
>> Ende Farben */
 
/* BASIS = = = = = = = = = = */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html{
	-webkit-font-smoothing: antialiased;
}
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	color: #444444;
}
header, footer{
	flex: 1 100%;
	max-width: 100%;
}
/*Ende BASIS*/

/* HEADER = = = = = = = = = =  */
header {
	text-align: center;
	border-bottom: medium solid #F60;
	padding: 0 15% 0 15%;
	margin-top: 80px;
}

#head{
	padding: 0 15% 0 15%;
	background-image: url(../Logo_Claudia_800px_2.jpg);
	height: 150px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
}

#titeltext{
	font-size: 180%;
	font-weight: 400;
}

/*Ende HEADER*/

/* MENU  = = = = = = = = = = */

#oben{ /*div-Element für die Navigation*/
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
}

.one img{ /*für Home-Grafik in der Navigation oben*/
	margin: 5px; 
}

nav{
	padding: 5px 10px 0 10px;
	background-color: #ffffff;
}

#nav_menu ul {
	list-style: none;
	position: relative;    /* So the first submenu can be positioned within the main menu */
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#nav_menu ul li {
	float: left;
	padding: 0 10px; 
	flex: 0 0 auto;
}

#nav_menu ul ul {
	display: none;         /* Don't display submenu until hover of the li element */
	position: absolute;
	top: 100%;             /* Position the submenu at the bottom of the main menu */
}

#nav_menu ul li a{
	color: #036;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.2em;
	font-weight: normal;
}

#nav_menu ul ul li {
	float: none;           /* Display the submenus vertically */
	position: relative;    /* So the second submenu can be positioned within the first submenu */
}

#nav_menu ul ul li ul {
	position: absolute;
	left: -100%;           /* Position the second submenu at the left side of the li element */ 
	top: 0;                /* Position the second submenu at the top of the li element */
}
#nav_menu ul li:hover > ul {
	display: block;        /* Display the submenu on hover of the li element */
}
#nav_menu ul::after {
	content: "";
	clear: both;
	display: block;
}

/* The styles for the formatting of the multi-tier navigation menu */
#nav_menu ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

#nav_menu ul li a {  /*Menüfarbe nicht fett */
	text-align: center;
	display: block;
	padding: 1em 0;
	text-decoration: none;
	color: #036;
}

#nav_menu ul li a.current {
	color: orange;
}
#nav_menu ul li a:hover, #nav_menu ul li a:focus {
	text-decoration: underline;
	color: #F60;
}
#nav_menu ul li:hover ul {
	width: 100%;
}
#nav_menu ul li:hover ul li a {
	display: block;
	width: 178px;
	text-align: center;
}

/* SLICNAV MENU */
.slicknav_menu {
	display: none;
}

/*Ende MENU*/

/* MAIN  = = = = = = = = = = */
main {
	text-align: left;
	padding: 0 15% 0 15%;
	background-color: #999;
}

#intro-section{
	padding-top: 1em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	background-color: #F60;
	border-radius: 0 0 20px 20px;
	color: #FFF;
	border-width: medium;
	border-style: none dotted dotted dotted;
	border-color: #FFF;
}

section {
	padding-top: 10px;
	padding-bottom: 10px;
	border: thin solid #666;
	border-radius: 20px;
	margin-bottom: 10px;
	background-color: #FFF;
}

.about{
	padding: 20px;
}

p {
	padding-top: 5px;
	padding-bottom: 5px;
}
.center{
	text-align: center;	
}

/* Überschriften*/
h1 {
	font-size: 160%;
	text-align:center;
}
h2 {
	font-size: 130%;
	color: #036;
	line-height: 1.5em;
}
h3 {
	font-size: 110%;
	font-weight: bold;
	padding: 15px 0 10px 0;
}

/* Links */

main a:link {
	color: #F30;
	text-decoration: underline;
}
main a:hover {
	color: #FFF;
	background-color: #F60;
	text-decoration: none;
}
main a:visited {
	color: #004E9B;
	text-decoration: underline;
}

.space {
	padding-left: 50px;
}

/*Info aufklappen mit Java Script*/

.titel {
	cursor:pointer;
	margin:0 0 10px 0;
	padding: 15px 0 0 15px;
}
.subtitle {
	font-weight: normal;
	font-size: 70%;
}
.klickbar {
	font-weight: normal;
	color: #F60;
	font-size: 65%;
}
.aktuell { /*Farbwechsel nach anklicken im Script*/
	color: #FFF;
	background-color: #036;
	border-radius: 15px;
}

.two img{ /*kleines Bild immer sichtbar*/
	border: thin solid #666;
	border-radius: 5px;
	margin: 0 10px 0 0;
}

.inhalt {
	text-align: left;
	border-left: medium dotted #999;
	padding-left: 20px;
	margin: 50px 0 0 1em;
}

.inhalt img{
	border: thin solid #CCC;
}

.inhalt li{
	margin-left: 2em;
	padding-bottom: 0.5em;
}


/*Flexraster - Spalteneinstellungen = = = = = = = = = = */

.row{
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 0;
	margin: 0 0 30px 0;
}

.col{
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 0;
	xbackground: red;
	xborder: 1px solid blue;
}

.row .col:first-of-type { 
	margin-left:0px; 
}

.col.one { 
	flex-basis: 7.5%;
	width: 7.5%; 
	max-width: 7.5%;
	word-break: break-all;
}
.col.two {
	width: 15.9%;
	max-width: 15.9%;
	padding: 10px;
}
.col.three { 
	width:24.3%;
	max-width: 24.3%;
}
.col.four { 
	width:32.7%; 
	max-width: 32.7%;
}
.col.five { 
	width:41.1%; 
	max-width: 41.1%;
}
.col.six {
	width: 49.5%;
	max-width: 49.5%;
	padding-right: 10px;
}
.col.seven { 
	width:57.9%; 
	max-width: 57.9%;
	padding-right: 10px;
}
.col.eight { 
	width:66.3%; 
	max-width: 66.3%;
	padding-right: 10px;
}
.col.nine { 
	width:74.7%; 
	max-width: 74.7%;
}
.col.ten { 
	width:83.1%; 
	max-width: 83.1%;
}
.col.eleven { 
	width:91.5%; 
	max-width: 91.5%;
}
.col.twelve { 
	width:100%; 
	max-width: 100%;
}

.row .col:last-of-type { 
	margin-right:0px; 
}

/* FOOTER  = = = = = = = = = = */
footer {
	text-align: center;
	background-color: #F60; /*orange*/
	color: #FFF;
	padding: 5px 0 5px 0;
	margin: 0;
}
footer a:link {
	color: #FFF;
	text-decoration: underline;
	padding: 0 2px 0 2px;
}
footer a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #004E9B;
}
footer a:visited {
	color: #FFF;
	text-decoration: underline;
}

.links {
	width: 100%;
	border-top: thin solid #FFF;
	padding: 15px;
}
/*Drucktext = = = = = = = = = = */
article{  /* für den Drucktext*/ 
	height: 1px;
	visibility: hidden;
} 

#drucktext{
	visibility: hidden;
	overflow: hidden;
	text-overflow: clip;
	white-space:nowrap;
}

/* BREAKPOINTS - Einstellungen für Tablet  = = = = = = = = = = */

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

#head{
	padding: 0 10% 0 10%;
	background-image: url(../Logo_Claudia_400px.jpg);
	height: 150px;
	background-repeat: no-repeat;
	background-position: center;
}

.one img{ /*für Home-Grafik in der Navigation oben*/
	margin: 5px; 
	width: 95%;
	height: auto;
}
	
#titeltext{
	font-size: 120%;
	font-weight: 400;
}
	
#nav_menu ul li a {
	font-size: .875em;     
}

}  /* Ende  Tablet */


/* BREAKPOINTS - Einstellungen für Smartphone  = = = = = = = = = = */

@media only screen and (max-width: 50em){
	
#head{
	padding: 0 10% 0 10%;
	height: 150px;
	bordercolor: #FFF;
	background-repeat: no-repeat;
	background-position: center;
	visibility:hidden;
}
.one img{ /*für Home-Grafik in der Navigation oben*/
	margin: 5px; 
	width: 61px;
	height: auto;
}

#titeltext{
	padding: 0 15% 0 15%;
	position: fixed; 
	top: 50px;
}	

#titeltext{
	font-size: 110%;
	font-weight: bold;
}

h1 {
	font-size: 140%;
}
	
#nav_menu {
	display: none;
}
.slicknav_menu {
	display: block;
}

.two img{
	border: thin solid #666;
	border-radius: 5px;
	margin: 0 10px 0 0; 
	width: 40%;
	height: auto;
}

.row{
	flex-wrap: wrap;
}

.col.one,
.col.two,
.col.three,
.col.four,
.col.five,
.col.six,
.col.seven,
.col.eight,
.col.nine,
.col.ten,
.col.eleven,
.col.twelve{
	flex: 1 0 100%;
	max-width: 100%;
}

ul#main_nav,
#search{
	display: none;
}

.slicknav_menu{
	display: block;
	position: absolute;
	right: 30px;
	background: #fff;
	z-index: 9999999999;
}

.slicknav_btn{
	background: #333;
}

.slicknav_menu .slicknav_icon-bar{
	color: #000;
}

.slicknav_nav a{
	color: #000;
}

header > .row{
	height:80px;
	background:orange;
	padding: 10px 30px;
}

}  /* Ende Smartphones */


/* Einstellungen für Druck = = = = = = = = = =*/

@media print{

/* für den Druck ausgeschaltet*/
nav, header, oben, head, section, #intro-section {
	visibility: hidden;
	height: 1px;
	padding: 0;
	margin: 0;
}

.links {
	visibility: hidden;
}

/* Ende für den Druck ausgeschaltet*/

h1 {
	font-size: 16px;
	font-weight: bold;	
}
h2 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 20px;
}
h3 {
	font-size: 12px;
	font-weight: bold;
}

p {
	font-size: 12px;
	padding-right: 12px;
}

ul{
	font-size: 12px;
}

.space{
	padding-left: 15px;
}



.row{
	flex-wrap: wrap;
}

.col.one,
.col.two,
.col.three,
.col.four,
.col.five,
.col.six,
.col.seven,
.col.eight,
.col.nine,
.col.ten,
.col.eleven,
.col.twelve{
	flex: 1 0 100%;
	max-width: 100%;
}

/*Drucktext*/
#drucktext{
	visibility: visible;
	overflow: visible;
	text-overflow: no;
	white-space: normal;
}

}  /* Ende Einstellungen für Druck */


