/* In dieser Datei werden allgemeingültige Formatierungen für
alle verwendeten HTML-Tags definiert, außerdem 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%;
}

/* Überschriften */
h1 {
	font-size: 140%;
	font-weight: normal !important;
	color: rgb(255,147,66);
}
h2 {
	font-size: 120%;
	font-weight: bold !important;
	color: #1F6799;
}
h3 {
	font-size:100%;
	font-weight: bold !important;
	color: #1F6799;
	margin-bottom: 5px;
	margin-top: 4px;
}
h4 {
	font-size:95%;
	font-weight: bold !important;
	color: #4c4c4c;
}

/* Textabsätze */
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: #1F6799;
	cursor: pointer;
}
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, dt, dd {
	font-size: 95%;
	color: #4c4c4c;
}
dt {
	background-image: url("/sc/img/listbullet_2.png");
	background-repeat: no-repeat;
	background-position: 0 2px;
	padding-left: 15px;
	font-weight: bold;
}
dd {
	padding-left: 15px;
}
/* Formularelemente */
form {display: inline;}
button {
	border: 0;
	background-color: transparent;
}

input {
}
textarea {
	border: 1px solid #aaa;
}

/* 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: #ffa835;
}

.italic, em, i {
	font-style: italic;
}

u {
	text-decoration: underline;
}

.small {
	font-size: 90%;
	color: #4c4c4c !important;
}

.error {
	color: red;
}
.onclick {
	cursor: pointer;
}


/* Sprachwahllayer */
.layer {
	position: absolute;
	z-index: 500;
	height: 0px;
}
.layer_wrap {
	position: relative;
/*	left: -100px;*/
}
.layer a span.layer_inner {
	position: absolute;
	top: 2.5ex;
	left: -2px;
/*	width: 136px;*/
	background-color: #FFFCEE;
	color: #4c4c4c;
	border: 1px solid #4C4C4C;
	padding: 10px 14px 10px 6px;
	margin-left: 15px;
    text-align: left;
    z-index: 100;
}          
.layer a span.layer_inner {
	display: none;
}
.layer a:hover {
	text-decoration: none;
}
.layer a:hover span.layer_inner {
	display: block;
}