/* In dieser Datei werden allgemeingueltige Formatierungen fuer
alle verwendeten HTML-Tags definiert, ausserdem befinden sich hier
eine Reihe von Standard-Klassen.
*/

html, body, div {
	margin: 0;
	padding: 0;
	border: 0;
}

body * {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Arial, sans-serif;
}
body {
	font-size: 85%;
}
table, form, input, select, textarea {font-size: 100%;font-family: Arial, sans-serif;}
/* Ueberschriften */
h1 {
	font-size: 140%;
	font-weight: normal;
	color: #FF9342;
}
h2 {
	font-size: 120%;
	font-weight: bold;
	color: #18679A;
}
h3 {
	font-size:100%;
	font-weight: bold;
	color: #1F6799;
	margin-bottom: 10px;
}
h4 {
	font-size:100%;
	font-weight: bold;
	color: #4C4C4C;
}

address {
	font-style: normal;
}
/* Textabsaetze */
p {
	font-size: 95%;
	margin-bottom:14px;
	color: #4c4c4c;
}
td {
	font-size: 95%;
	color: #4c4c4c;
}
/* Bilder */
img {
	display: block;
}
p img, li img, h1 img, h2 img, h3 img, h4 img {
	display: inline;
	/*vertical-align: middle;*/
}

/* Links */
a, a:link, a:visited, a:active {
	text-decoration: none;
	color: #4c4c4c;
	cursor: pointer;
}

a.arrow {
	padding-left: 12px;
	background: url("../img/linkbullet_1.png") no-repeat 0px 0.3em;
}

a:focus, a:hover {
	text-decoration: underline;
}
h1 a, h2 a, h3 a, p a, li a {
	padding-left: 0;
	padding-right: 0;
}
/* Listen */
ul {
	list-style-type: disc;
}
ul ul {
	list-style-type: circle;
}
li {
	font-size: 95%;
	color: #4c4c4c;
}
/* Formularelemente */
button {
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

input {
/*	border: 0;
	padding: 0;
	margin: 0;*/
}
textarea {
	border: 1px solid #aaaaaa;
}

/* funktioniert nicht in allen Browsern
alternative Umsetzung mit JavaScript nötig --->
input:focus {
	border: 1px solid red;
}
input:active {
	border: 1px solid red;
}
button:focus {
	text-decoration: underline;
	background-color: white;
}
button:hover {
	text-decoration: underline;
	background-color: white;
}
button:active {
	text-decoration: underline;
	background-color: white;
}
<--- */


/* Texte, die der Barrierefreiheit dienen
(z.B. zusätzliche Label in Formularen oder Links zum überspringen der Navigation),
können mittels class="hidden" verborgen werden
*/
.hidden {
  position: absolute;
  color: red;
  background-color: white;
  left: -1000px;
  top: -1000px;
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: inline;
}

.clearbreak {
	clear: both;
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	line-height: 0;
	color: white;
	background-color: transparent;
}

.blocklink {
	color: #4c4c4c !important;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.bold, strong, b {
	font-weight: bold;
	color: #626262;
}

.italic, em, i {
	font-style: italic;
}

u {
	text-decoration: underline;
}

.small {
	font-size: 90%;
	color: #4c4c4c !important;
}


a.back {
	padding-top:10px;
	text-decoration: underline;
	display: block;
}

a.popup {
	text-decoration: underline;
}
