/* - CSS Styles fuer die HTML-Elemente */

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 170%;

  /*setzt die Hintergrund-Farbe und -Bild */
  /* url('../images/bg/grauverlauf.gif') repeat-x top left;*/

  background: #f5a11e;
  color: #000;
  font-style:normal;
  font-variant:normal;
  font-weight:400;
  font-size:0.8em;
  font-family:verdana, arial, sans-serif
}

h1 {
  clear: both;
  font: 700 1.9em "trebuchet ms", serif;
  color: #555;
}

h2 {
  clear: both;
  font: 400 1.4em "trebuchet ms", serif;
  color: #444;
}

/*for link styles within h2 headlines*/
h2 a {
  color: #444;
  text-decoration: underline;
}

h2 a:visited {
  color: #444;
  text-decoration: none;
}

h2 a:hover {
  color: #678bcc;
}

h3 {
  font: 400 1.1em "trebuchet ms", serif;
  color: #006633;
}

h4 {
  font: 700 1.2em "trebuchet ms", serif;
  color: #666;
}

h5 {
  font: 700 1.1em "trebuchet ms", serif;
  color: #f17400;
}

h6 {
  font: 700 1em "trebuchet ms", serif;
  color: #ff4b33;
}


h1, h2, h3, h4, h5, h6, p, dl {
  margin: 0;
  padding: 10px 15px;
}

/* Hiermit richtet sich die Spalte ganz links sauber am Header aus.
   Wenn der Spalte ganz links die Klasse bgfarbe (layout.css) zugewiesen wird, braucht man diese Klasse nicht. */
.leftColumn h1,
.leftColumn h2,
.leftColumn h3,
.leftColumn h4,
.leftColumn h5,
.leftColumn h6,
.leftColumn p,
.leftColumn dl {
  padding-left: 10px;
}

/* Wie oben, fuer Spalte ganz rechts */
.rightColumn h1,
.rightColumn h2,
.rightColumn h3,
.rightColumn h4,
.rightColumn h5,
.rightColumn h6,
.rightColumn p,
.rightColumn dl {
  padding-right: 10px;
}

a {
  color: #006633;
  font-weight: bold;
  text-decoration: underline;
}

/*for visited link style */
a:visited {
  color: #444;
  text-decoration: none;
}

a:hover {
  color: #444;
  text-decoration: underline;
}

b {
  color: #555;
}

ol {
  color: #284d96;
}

ol span {
  color: #000;
}

/* Bei Verwendung der Backgrounds fuer den Fliesstext werden Listen-Elemente mit dem Bild gestylt */
.bgFarbe li {
  list-style-image: url('../images/bg/bullet.gif');
}

.bgFarbe li li{
  list-style-image: none;
  list-style-type: circle;
}

.bgSolid ul {
  list-style: url('../images/bg/bullet.gif');
}

.bgSolid ul ul {
  list-style-image: none;
  list-style-type: circle;
}


.bgFarbe ol, ul {
  margin: 10px 30px;
  padding: 0 30px;
}

.bgSolid ol, ul {
  margin: 10px 20px;
  padding: 0 30px;
}

.caption {
  font-size: 0.75em;
}

del {
  color: #aaa;
}

code {
  margin: 10px 15px;
  padding: 10px;
  display: block;
  overflow: auto;

  font: 600 1em courier, monospace;
  line-height: 120%;
  white-space: pre;
  color: #fff;
  background: #444;
}

.leftColumn code {
  margin-left: 0;
}

acronym {
  cursor: help;
  border-bottom: 1px dotted #555;
}

dt {
  font-weight: bold;
  color: #ffb323;
}

dd {
  margin-left: 0;
  padding-left: 45px;
}

/* Form Elements */

/*kann leer bleiben, wird hier nur benoetigt, um dann im print.css auch auszublenden*/
.search form {
}

fieldset {
  margin: 0.5em auto 0.5em auto;
  display: block;
  border: 0px solid #c2c2c2;
  clear: both;
}

label {
  display: block;
}

input,
textarea,
select {
  font: 400 1em verdana, sans-serif;
  color: #000;
  background: #ffffcd;
  border: 1px solid #006633;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  color: #000;
  background: #fff;
  border: 1px solid #006633;
}

input.button {

  font: 400 1.1em "trebuchet ms", serif;
  color: #000;
  background: #fff;
}

/* Blockquote und die verwendeten icons */

blockquote {
  margin: 10px 15px;
  padding-left: 27px;
  background-color: #f7f7f7;
  background-image: url('../images/icons/go.gif');
  background-repeat: no-repeat;
  background-position: 5px 50%
}

blockquote .exclamation {
  background-image: url('../images/icons/exclamation.gif');
}

blockquote .stop {
  background-image: url('../images/icons/stop.gif');
}

blockquote .go {
  background-image: url('../images/icons/go.gif');
}


/* Images */

a img {
  border: 0.2em solid #999;
}

.txtLink a img {
   border: none;
}

.txtLink a:hover img {
  color: #f5a11e;
  text-decoration: underline;
  border: none;
}



/* Image-links mit hover effect */

a:hover img {
  /* Fixed IE bug - Der IE wendet diesen style nicht korrekt an, daher wird er maskiert... */
  border: 0.2em solid #678bcc; /*!important;*/
  border: 0.2em solid #c8c8c8;
}

/* allgemeine Styles */

.clear {
  height: 1%;
  clear: both;
}

.block {
  display: block;
}

.small {
  font-size: 0.8em;
}

.green {
  color: #a1ff45;
}

.red {
  color: #c00000;
}

.grey {
  color: #666;
}

.grey a {
  color: #999;
}

.grey a:hover {
  color: #678bcc;
}

/* Ausrichtungsklassen */

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignCenter {
  text-align: center;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

