/* stylesheet für container */
@import url("container.css");

/* stylesheet für alle input felder */
@import url("form.css");

/* stylesheet für popups */
@import url("popup.css");

/* stylesheet für das startmenü */
@import url("startmenu.css");

/* Farbkonzept:
 * 
 * Hintergrundblau: #179AB2
 * Linkblau: #35CAE5
 * Flächengrau: #3E4042
 * 
 */
html, body {
	height: 100%;
}

* {
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	margin: 0px;
	text-align: left;
	z-index: 1;
}

h1, h2, h3, h4, h5 {
	margin: 0px 0px 10px 0px;
	font-family: 'Merriweather', serif;
}

h1 {
	font-size: 26px;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 20px;
}

h4, h5, h6 {
	font-size: 17px;
}

p {
	margin: 0px 0px 10px 0px;
    line-height: 1.3;
	hyphens: auto;
	text-align: justify;
}

a {
	text-decoration: none;
	color: #243752;
	border-bottom: 1px dotted #243752;
    transition-duration: 0.3s;
}

a:hover {
	color: #0A6187;
	border-bottom: 1px dotted #0A6187;
}

aside h3 {
	text-align: center;
}

.full {
	clear: both;
}

nav ul {
	list-style: none;
	padding: 0px;
}

fieldset {
	border: 0px;
	padding:0;
	border:none;
	margin:1em 0 1em 0;
}

legend {
  font-size:1.2em;
  font-weight: bold;
}

.box {
	background:#eee;
	padding:1em;
}

.box div {
	clear: both; /* fix for IE8 */
}

hr {
	padding: 0;
	border: none;
	margin-top: 20px;
	border-top: medium double #333;
	color: #333; text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
}

a.less {
	color: #3E4042;
	font-size: 22px;
	border-bottom: 0px;
}

a.less:hover {
	color: white;
}

.abzuege th {
    font-size: 11px;
}

@media only screen and (max-width: 899px) {
	* {
		font-size: 13px;
	}
}
