@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @copyright       Copyright 2005-2009, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 * @appdef yaml
 */

@media all
{
 /**
  * Fonts
  *
  * (en) global settings of font-families and font-sizes
  * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen
  *
  * @section content-global-settings
  */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01%; }

 /**
  * (en) reset monospaced elements to font size 16px in all browsers
  * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
  *
  * @see: http://webkit.org/blog/67/strange-medium/
  */

  textarea, pre, code, kbd, samp, var, tt {
    font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 75.00%;
    color: #444;
  }
  
  /*--- Headings | Überschriften ------------------------------------------------------------------------*/

  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 1em 0 0.25em 0;
    line-height: 1.5em;
  }

  h1 { font-size: 133.33%; margin-bottom: 1em; } /* 16px */
  h2 { font-size: 116.67%; margin-bottom: 0.5em; } /* 14px */
  h3, h4, h5, h6 { font-size: 100%; } /* 12px */
  h5 { /* Zwischenüberschrift */
	margin-top: 25px;
	margin-bottom: 15px;
	border-bottom: 1px solid #587684;
	line-height: 14px;
	color: #587684;
	letter-spacing: 1px;
  }
  h6 { /* Zwischenüberschrift 2. Art */
	margin: 25px 0px 15px 0px;
	padding: 3px 0px 3px 0px;
	border-top: 1px solid #587684;
	border-bottom: 1px solid #587684;
	line-height: 14px;
	color: #587684;
	letter-spacing: 1px;
  }

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */

  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; }
  ul li { list-style-type: disc; }
  ul ul li { list-style-type: circle; }

  ol li { list-style-type: decimal; }
  ol ol li { list-style-type: lower-latin; }

  li { margin-left: 0.8em; line-height: 1.5em; }

  dt { font-weight: bold; }
  dd { margin: 0 0 1em 0.8em; }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */

  p { line-height: 1.5em; margin: 0 0 1em 0; }

  blockquote, cite, q {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
  }
  blockquote { margin: 0 0 1em 1.6em; color: #666; }

  strong, b { font-weight: bold; }
  em, i { font-style: italic; }

  pre, code, kbd, tt, samp, var { font-size: 100%; }
  pre, code { color: #800; }
  pre { line-height: 1.5em; margin: 0 0 1em 0; }
  kbd, samp, var { color: #666; }
  var { font-style: italic; }

  acronym, abbr {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help;
  }

  sub, sup { font-size: 91.6667%; }

  hr {
    color: #fff;
    background: transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 0.5em 0;
    border: 0;
    border-bottom: 1px #eee solid;
  }

  /*--- Links ----------------------------------------------------------------------------------------- */

  a { color: #d42300; background: transparent; text-decoration: none; }
  a:focus,
  a:hover,
  a:active { text-decoration: underline; }

  a.topnav { color: #eee; background: transparent; font-weight: bold; text-decoration: none; }
  a.topnav:focus,
  a.topnav:hover,
  a.topnav:active { text-decoration: underline; }
  
  a.subnav { color: #587684; background: transparent; text-decoration: none; }
  a.subnav:focus,
  a.subnav:hover,
  a.subnav:active { text-decoration: underline; }

  /* --- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------ */

  p.icaption_left { float: left; display: inline; margin: 0 1em 0.15em 0; }
  p.icaption_right { float: right; display: inline; margin: 0 0 0.15em 1em; }

  p.icaption_left img,
  p.icaption_right img { padding: 0; border: 1px #888 solid; }

  p.icaption_left strong,
  p.icaption_right strong { display: block; overflow: hidden; margin-top: 2px; padding: 0.3em 0.5em; background: #eee; font-weight: normal; font-size: 91.667%; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Generic Content Classes
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */

  .highlight { color: #f60; }
  .dimmed { color: #888; }

  .info { background: #f8f8f8; color: #666; padding: 10px; margin-bottom: 0.5em; font-size: 91.7%; }

  .note { background: #efe; color: #040; border: 2px #484 solid; padding: 10px; margin-bottom: 1em; }
  .important { background: #ffe; color: #440; border: 2px #884 solid; padding: 10px; margin-bottom: 1em; }
  .warning { background: #fee; color: #400; border: 2px #844 solid; padding: 10px; margin-bottom: 1em; }

  .float_left { float: left; display: inline; margin-right: 1em; margin-bottom: 0.15em; }
  .float_right { float: right; display: inline; margin-left: 1em; margin-bottom: 0.15em; }
  .center { display: block; text-align: center; margin: 0.5em auto; }

  .small { font-size: 90%; }
  .small_grey { font-size: 90%; color: #777777; }

  
  
 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Tables | Tabellen
  *
  * (en) Generic classes for table-width and design definition
  * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  *
  * @section content-tables
  */

/*
  table { width: auto; border-collapse: collapse; margin: 1em 0 1em 0; border: 0; padding: 0; }
  table caption { font-variant: small-caps; }
  table.full { width: 100%; }
  table.fixed { table-layout: fixed; }

  tr,th,td { margin: 0.2em; padding: 0.35em; border: 1px solid; vertical-align: top; text-align: left; }
  thead th { color: #000; }
  tbody th { background-color: #819bbf; color: #eee; font-weight: bold; }
  tbody th[scope="row"], tbody th.sub { background: #f0f0f0; }

  tbody tr:hover th[scope="row"],
  tbody tr:hover tbody th.sub { background: #f0e8e8; }
  tbody tr:hover td { background: #fff8f8; }

*/

table { width: auto; margin: 0 0 2em 0; padding: 0; border: 0; }
tr, th, td { margin: 0; padding: 0.45em; border: 0; vertical-align: top; text-align: left; line-height: 1.5em; }
th { background-color: #819BBF; color: #EEEEEE; font-weight: bold; }
tr.bg_hell:hover td { background: #FFF8F8; } 
tr.bg_mittel:hover td { background: #FFF8F8; } 
tr.bg_dunkel:hover td { background: #FFF8F8; } 
.bg_hell { background-color: #E2E8F0; }
.bg_mittel { background-color: #CBD6E7; }
.bg_dunkel { background-color: #D4DDEA; }
.bg_highlight { background-color: #F7C9C9; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Miscellaneous | Sonstiges
  *
  * @section content-misc
  */

 /**
  * (en) Emphasizing external Hyperlinks via CSS
  * (de) Hervorhebung externer Hyperlinks mit CSS
  *
  * @section             content-external-links
  * @app-yaml-default    disabled
  */

  /*
  #main a[href^="http://www.my-domain.com"],
  #main a[href^="https://www.my-domain.com"]
  {
    padding-left: 12px;
    background-image: url('your_image.gif');
    background-repeat: no-repeat;
    background-position: 0 0.45em;
  }
  */

/* Eintrag mit Pfeil */

.arrowentry {
	padding-top: 0px;
	padding-left: 15px; /* vorher : 55px; */
 	background-image: url(/img/bullets/rightarrow.gif);
	background-repeat: no-repeat;
	background-position: -3px 2px; /* vorher 37px 3px */
}

/* Kalender */

.event_title { font-weight: bold; margin: 10px 0px 5px 0px; }
.event_text { margin: 0px 0px 25px 25px; }
  
/* Newsticker und Newsentry */

.newsticker_title { font-weight: bold; margin: 10px 0px 5px 0px; }
.newsticker_date { color: #999999; font-size: 83.3333%; margin: 0px 0px 5px 25px; }
.newsticker_abstract { margin: 0px 0px 25px 25px; }

.newsentry_title { font-weight: bold; margin: 10px 0px 5px 0px; }
.newsentry_date { color: #999999; font-size: 83.3333%; margin: 0px 0px 5px 0px; }

/* Grauer Kasten */

.box_grey { background-color: #E2E8F0; padding: 10px; }

/* Quick-Click */

.quickclick_box {
	margin: 10px 0px 50px 30px;
	padding: 10px;
	width: 240px;
	background-color: #E2E8F0;
	color: #587684;
}
.quickclick_header {
	margin-bottom: 10px;
	border-bottom: 1px solid #d42300;
	padding-bottom: 5px;
	color: #d42300;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
}
.quickclick_entry { 
	padding-top: 8px;
	padding-left: 15px;
	background-image: url(/img/icons/doubledots.gif);
	background-repeat: no-repeat;
	background-position: 0px 9px;
	font-size: 10px;
}
.quickclick_aktuell {
	color:#d42300;
	font-weight:bold;
}

/* A-Z-Liste */

.abisz_link { margin-left: 20px; }
.abisz_letter_active { margin-right: 5px; font-size: 20px; line-height: 25px; }
.abisz_letter_inactive { margin-right: 5px; color: #999999; }
.abisz_letter_link { margin-right: 5px; }

/* Sitemap */

.sitemap0 { line-height: 20px; font-weight: bold; }
.sitemap1 { margin-left: 20px; line-height: 20px; }
.sitemap2 { margin-left: 40px; line-height: 20px; }
.sitemap3 { margin-left: 60px; line-height: 20px; }

/* Formularfelder */

.formfield {
	border: 1px solid #999999;
	padding: 2px;
	margin-right: 5px;
	width: 400px;
	vertical-align: middle;
	font-family: Arial;
	font-size: 14px;
}
.formfield:focus {
	border: 1px solid #163381;
	background-color: #F5F8FB;
	vertical-align: middle;
}
select {
	border: 1px solid #999999;
	padding: 2px;
	font-family: Arial;
	font-size: 14px;
}
.formbutton,.formsubmit,.formbutton_escape,.formbutton_save {
	border: 1px solid #163381;
	margin: 0px 3px 0px 3px; 
	padding: 2px 5px 2px 5px;
	background-color: #E2E8F0;
	vertical-align: middle;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #444444;
}
.formbutton:hover,.formsubmit:hover ,.formbutton_escape:hover,.formbutton_save:hover { background-color:#EE6666; color:white; }
.formbutton_escape { padding: 2px 5px 2px 25px; background-image:url(/img/bullets/no.png); background-position:5px; background-repeat:no-repeat; }
.formbutton_save { padding: 2px 5px 2px 25px; background-image:url(/img/bullets/yes.png); background-position:5px; background-repeat:no-repeat; }

a.button { border:1px solid #163381; margin:6px; padding:3px 6px 3px 6px; background-color:#E2E8F0; text-decoration:none; color:#444; line-height:1.6em; white-space:nowrap; font-weight: bold; }
a.button:hover { background-color:#EE6666; color:white; }
a.button_left { border:1px solid #163381; margin:5px; padding:3px 6px 3px 16px; background-color:#E2E8F0; text-decoration:none; color:#444; line-height:1.6em; white-space:nowrap; background-image:url(pfeil_links.gif); background-position:left; background-repeat:no-repeat; }
a.button_left:hover { background-color:#EE6666; color:white; background-image:url(pfeil_links_weiss.gif); }
a.button_right{ border:1px solid #163381; margin:5px; padding:3px 16px 3px 6px; background-color:#E2E8F0; text-decoration:none; color:#444; line-height:1.6em; white-space:nowrap; background-image:url(pfeil_rechts.gif); background-position:right; background-repeat:no-repeat;}
a.button_right:hover { background-color:#EE6666; color:white; background-image:url(pfeil_rechts_weiss.gif); }
.button_inactive { border:1px solid #777; margin:5px; padding:3px 6px 3px 6px; background-color:#EEE; text-decoration:none; color:#777; line-height:1.6em; white-space:nowrap; font-family:Verdana, Arial, Geneva, Helvetica; font-size:12px; }
.button_inactive_left { border:1px solid #777; margin:5px; padding:3px 6px 3px 16px; background-color:#EEE; text-decoration:none; color:#777; line-height:1.6em; white-space:nowrap; font-family:Verdana, Arial, Geneva, Helvetica; font-size:12px; background-image:url(pfeil_links_grau.gif); background-position:left; background-repeat:no-repeat; }
.button_inactive_right { border:1px solid #777; margin:5px; padding:3px 16px 3px 6px; background-color:#EEE; text-decoration:none; color:#777; line-height:1.6em; white-space:nowrap; font-family:Verdana, Arial, Geneva, Helvetica; font-size:12px; background-image:url(pfeil_rechts_grau.gif); background-position:right; background-repeat:no-repeat; }

/* Mein-VDB Messages */
/* Breite der Boxen war bis zum 30.04.2014: width: 480px; */

.info_box  {
  margin: 20px 0 20px 0;
  padding: 10px;
  border: 1px solid #555555;
  background: #F9F9F9;
}
.alert_box ,.hint_box {
  margin: 20px 0 20px 0;
  padding: 10px 10px 0 10px; /* unten 0, denn das <p>-Tag bringt das ohnhin mit */
  border: 1px solid #e7dc2b;
  background: #fff888;
}
.success_box {
  margin: 20px 0 20px 0;
  padding: 10px 10px 0 10px; /* unten 0, denn das <p>-Tag bringt das ohnhin mit */
  border: 1px solid #669966;
  background: #88ff88;
}
.error_box {
  margin: 20px 0 20px 0;
  padding: 10px 10px 0 10px; /* unten 0, denn das <p>-Tag bringt das ohnhin mit */
  border: 1px solid #ff0000;
  background: #ffaaaa;
}
.error { color:red; }
.success { color:green; }
.alert,.hint { color:#F60; font-weight:bold; }

.loginbox {
  font-size: 83.3333%;
  background-color:#E2E8F0;
  padding:5px;
  margin-bottom:10px;
  border: 1px solid #163381;
}

/* Wordpress */
.wp_color {
  color:#587684;
}

}