/**  * main.css *  
* 1. General HTML tags 
* 2. Masthead area 
* 3. Main content and sidebar 
* 4. Footer 
* 5. Media queries for responsive layout 
* 6. Accessibility helpers *  
*/ /********************************************************************* 
* 1. General HTML tags * 
*/
* {	box-sizing: border-box; }
body {
	background-color:##dbe6f0;
	padding: 5%;
	max-width: 1600px;
 	margin: 0 auto; }
body, td, input[type=text], textarea {
	font-family: 'Quattrocento', serif;
	font-size: 105%;
 	line-height: 1.8em;
	color: #444; }

img {
	max-width: 100%;
 }
h2 { font-weight: normal; }
h3 {	
 	padding-top: 1em;
	color: #777; }
a, {	color: #1a1aff;
	text-decoration: none;
	 }
a:link {
	color: #aaa;
	text-decoration: none;
	 }
a:visited {	color: #888;
	text-decoration: none;
	 }
a:hover,
	.nav a:hover {
		color: #333;
		border-color: #aaa;
		text-shadow: 2px 2px 3px #a6a6a6;	
 	}
a:hover img{box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em;
 	border-left: 4px solid #ddd;
 	font-style: italic;
 	color: #777; }
pre, code {
	background: #eee;
 	border: 1px solid #ddd;}
pre {	font-size: 14px;
 	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd;
 }
tr:nth-child(even) {
    background-color: #f2f2f2;
}
table{margin-bottom: 1em;}
/********************************************************************* 
* 2. Masthead area * 
*/
.tonav{overflow: auto; white-space:nowrap}
.topnav, .topnav li {
	list-style: none;
 	padding: 0;
	margin: 0;	
	}
	.topnav li {
		display: inline-block;
		float: left;
		margin-right: 1em;
		margin-bottom: 1em;
	}
	.topnav a {
		padding: 0.25em 0.5em;
		text-decoration: none;
 		display: inline-block;
		background: #fff;
 		color: #333;
 		border: 1px solid #fff;
 	}
	.topnav a:hover {
		background: #a4c0f4;
		border-color: #a4c0f4;
 		color: #ffffff;
		border-radius: 8px;
		text-shadow: 1px 1px #a6a6a6;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			}
	.topnav li.current a {
		background: #eee;
 		border-color: #eee;
	}
	.topnav li.current a:hover {
		color: #000;
		border-radius: 8px;
		text-shadow: 1px 1px #a6a6a6;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}
	.topnav li a.icon {
  		display: none;
	}
	.topnav li.edit a {
		background: none;
 	}
	.topnav li.edit a:hover {
    color: white;
    text-shadow: 2px 2px 2px black, 1px 1px 25px blue, 1px 1px 5px darkblue;
		border-radius: 8px;
		text-shadow: 1px 1px #a6a6a6;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 	}
form.search {
	float: right;
 	margin: 0;
	width: 30%; }
	form.search input {
		margin: 0;
		padding: 0.25em 0.5em;
		border: 1px solid #ccc;
 		width: 100%;
 	}
.breadcrumbs {
	clear: both;
 	padding-top: 1em; }
	.breadcrumbs span:after {
		content: ">";
		color: #999;
 		padding-left: 0.5em;
		padding-right: 0.25em;
 	}
.sticky {
  	position: fixed;
	background: #fff;
  	top: 0;
  	width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 50px;
}
/********************************************************************* 
* 3. Main content and sidebar * 
*/
#main {
	border-top: 1px solid #eee;
 	padding-top: 1em;
 	margin-top: 1em;
	margin-bottom: 1em;
 	clear: both;	
 }

#content {
	width: 65%;
 	float: left;
	padding-bottom: 4em; }
#sidebar {
	width: 35%;
	padding-left: 5%;
 	float: left;
 	padding-bottom: 4em;
 }
.nav {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
 }
	.nav .nav {
		padding-left: 1.5em;
		list-style: disc;	}
	.nav li {
		margin: 1em 0;
	}
	.nav-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}
	.nav a {
		font-weight: bold;
	}
	.nav-tree li a {
		color: #777;
 	}
	.nav .current > a {
		color: #333;
 	}
.align_left {
	/* for images placed in rich text editor */
 	float: left;
	margin: 0 1em 0.5em 0;
 	position: relative;
	top: 0.5em;
	max-width: 50%;
 }
.align_right {
	/* for images placed in rich text editor */
 	float: right;
	margin: 0 0 0.5em 1em;
	max-width: 50%; }
.align_center {
	/* for images placed in rich text editor */
 	display: block;	margin: 1em auto;
 	position: relative;
	top: 0.5em;}
figure {
	display: table;
	width: 1px;
	margin: 1em 0;}
figure img {
	display: table-row;
	margin-bottom: 0.5em;}
figure figcaption {
	display: table-row;
	font-size: smaller;
	color: #777;
	line-height: 1.4em;}
.weiterbildung{
	width:1000px
}
/********************************************************************* 
* 4. Footer * 
*/
#footer {
	background: #fff;
	/*position: fixed;
  	left: 0;
   	bottom: 0;
   	width: 100%;*/
	margin-top: 1em;
    	text-align: center;
	clear: both;
 	border-top: 1px solid #eee;
 	font-size: 80%; }
/* Style the font awesome icons */
footer .fa {
    	padding: 5px;
    	font-size: 15px;
    	width: 25px;
    	text-align: center;
    	text-decoration: none;
	border-radius: 50%;
}

/* Add a hover effect to font awesome icons */
footer .fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Xing */
footer .fa-xing {
    background: #026466;
    color: white;
}

/* LinkedIn */
footer .fa-linkedin {
    background: #0077b5;
    color: white;
}
/* Twitter */
footer .fa-twitter {
    background: #1da1f2;
    color: white;
}
/********************************************************************* 
* 5. Media queries for responsive layout * 
*/

@media only screen and (max-width: 767px) {
	/* mobile layout */
 	body, td, textarea {
		font-size: 100%;
 	}
	.topnav a {
		padding: 0.1em 0.1em;
}
	.topnav li {
		float: left;
		margin-right: 1em;
		margin-bottom: 0.1em;
	}	
#content,
 	#sidebar {	
		float: none;
		width: 100%;
 		padding: 0;
		padding-bottom: 30px;
 	}
	form.search {
		float: none;
 		width: 100%;
 	}
	#content {
		width: 100%;
 	}
	#sidebar {
		
		padding-top: 1em;
 	}
	.align_left, .align_right, .align_center {
		display: block;
		float: none;
 		margin: 1em auto;
		max-width: 100%;
 	}
.weiterbildung{
	width:auto;
}
}

@media only screen and (min-width: 1200px) {
	/* extra-wide desktop layout */
 	body, td, textarea {
		font-size: 115%;
 	}
	#main {
		height:70vh;
	}
}

/********************************************************************* 
* 6. Accessibility helpers * 
*/
/* Hide visually, but remain approachable for screenreader */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	white-space: nowrap;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	border: 0;}
/* Show bypass link on hover */
.element-focusable:focus {
	clip: auto;
	overflow: visible;
	height: auto;}
/* Sample styling for bypass link */
.bypass-to-main:focus {
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #333;
	color: #fff;}