/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @copyright       © 2005-2013, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         4.1.0
 */
@media all {
  /*
  * @section global typography settings
  *
  * vertical rhythm settings (based on em-unit)
  * -------------------------------------------
  * basefont-size:  14px (87.5%)
  * line-height  :  21px (factor: 1.5) */
  /* (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%;
  }

  /**
  * (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;
  }

  /* font-size: 14px; */
  body {
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 81.25%;
    color: #1A1A1A;
  }

  /*--- Headings | Überschriften ------------------------------------------------------------------------*/
  h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #204476;
    margin: 1.5em 0 0.25em;
    line-height: 1.5;
  }

  h1 {
    /* font-size: 48px; */
    font-size: 1.333em;
  }

  h2 {
    /* font-size: 32px; */
    font-size: 1.333em;
  }

  h3 {
    /* font-size: 24px; */
    font-size: 1.167em;
  }

  h4 {
    /* font-size: 21px; */
    font-size: 1.167em;
  }

  h5 {
    /* font-size: 18px; */
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
  }

  h6 {
    /* font-size: 14px; */
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
  }
  
  .ym-col2 h1, .ym-col2 h1 a,
  .ym-col2 h2, .ym-col2 h2 a,
  .ym-col2 h3, .ym-col2 h3 a,
  .ym-col2 h4, .ym-col2 h4 a,
  .ym-col2 h5, .ym-col2 h5 a,
  .ym-col2 h6, .ym-col2 h6 a {
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    color: #EF5A24;
  }
  
  .csc-textpic .csc-header * {
    margin-top: 0;
  }

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */
  ul,
  ol,
  dl {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }

  ul {
    list-style-type: none;
    padding: 0;
  }

  ol {
    list-style-type: decimal;
  }

  ul ul {
    list-style-type: circle;
    margin-top: 0;
  }

  ol ol {
    list-style-type: lower-latin;
    margin-top: 0;
  }

  ol ul {
    list-style-type: circle;
    margin-top: 0;
  }

  li {
    font-size: 100%;
    line-height: 1.5;
    margin-left: 1.2em;
  }
  
  ul li {
    background: url(/fileadmin/gfx/more-dark.gif) no-repeat scroll left top transparent;
    padding-left: 20px;
    margin-left: 0;
    list-style: none;
  }

  dt {
    font-weight: bold;
  }

  dd {
    margin: 0 0 1.5em 0.8em;
  }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
  p {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }

  blockquote,
  cite,
  q {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
  }

  blockquote {
    background: transparent;
    color: #666666;
    margin: 1.5em 0 0 0;
  }

  strong,
  b {
    font-weight: bold;
  }

  em,
  i {
    font-style: italic;
  }

  big {
    /* font-size: 16px; */
    font-size: 114.28571%;
    line-height: 1.3125;
  }

  small {
    /* font-size: 12px; */
    font-size: 85.71429%;
    line-height: 1.75;
  }

  pre,
  code,
  kbd,
  tt,
  samp,
  var {
    font-size: 100%;
  }

  pre {
    font-size: 100%;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  pre,
  code {
    color: #880000;
  }

  kbd,
  samp,
  var,
  tt {
    color: #666666;
    font-weight: bold;
  }

  var,
  dfn {
    font-style: italic;
  }

  acronym,
  abbr {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help;
  }

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sup {
    top: -0.5em;
  }

  sub {
    bottom: -0.25em;
  }

  mark {
    background: yellow;
    color: black;
  }

  hr {
    color: #fff;
    background: transparent;
    margin: 0 0 0.75em 0;
    padding: 0 0 0.67857em 0;
    border: 0;
    border-bottom: 1px #eeeeee solid;
  }

  /*--- Links ----------------------------------------------------------------------------------------- */
  a {
    color: #2B73C3;
    background: transparent;
    text-decoration: none;
  }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #204476;
  }
  table a { color: #1A1A1A; }

  a:active {
    outline: none;
  }

  /* (en) maximum constrast for tab focus - change with great care */
  /* (en) Maximaler Kontrast für Tab Focus - Ändern Sie diese Regel mit Bedacht */
  a:hover,
  a:focus {
    text-decoration: underline;
  }

  /* --- images ------------------ */
  div.csc-textpic-center .csc-textpic-center-outer, div.csc-textpic-center .csc-textpic-center-inner, figure { max-width: 100%; }
  figure img { max-width: 100%; height: auto; }
  
  img,
  figure {
    margin: 0;
  }

  .flexible {
    margin-bottom: 1.5em;
    max-width: 100%;
    height: auto;
  }

  /* IE6 workaround - 2% space for possible borders */
  * html .flexible {
    width: 98%;
  }

  .bordered {
    margin-bottom: 1.5em;
    border: 2px #eee solid;
    border: 2px white solid;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  }

  /**
  * ----------------------------------------------------------------------- #
  *
  * Generic Content Classes
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */
  .important { color: #EF5A24; font-weight: 700; }
  .detail { color: #EF5A24; font-weight: 700; }
  .release { font-weight: 700; }
  .kaptitel { font-weight: 700; }
  
  a.PDF, a.pdf, a[href$=".pdf"] {
    background: url(/fileadmin/gfx/pdf.png) no-repeat scroll 2px center transparent !important;
    color: #1A1A1A;
    padding-left: 20px;
  }
  a.WMF, a.wmf, a[href$=".wmf"] {
    background: url(/fileadmin/gfx/grafik-zip.png) no-repeat scroll 2px center transparent !important;
    color: #1A1A1A;
    padding-left: 20px;
  }
  a.XLS, a.xls, a[href$=".xls"],
  a.XLSX, a.xlsx, a[href$=".xlsx"] {
    background: url(/fileadmin/gfx/exel-zip.png) no-repeat scroll 2px center transparent !important;
    color: #1A1A1A;
    padding-left: 20px;
  }
  .ym-col3 a.download {
    background: url(/fileadmin/gfx/download.gif) no-repeat scroll 2px center transparent;
    color: #1A1A1A;
    padding-left: 20px;
  }
  .ym-col2 a.download {
    color: #1A1A1A;
  }
  .csc-linkToTop { text-align: right; }
  .csc-linkToTop a {
    background: url(/fileadmin/gfx/totop.gif) no-repeat scroll left center transparent;
    padding-left: 15px;
  }

  .float-left {
    float: left;
    display: inline;
    margin: 0 1em 1.5em 0;
  }

  .float-right {
    float: right;
    display: inline;
    margin: 0 0 1.5em 1em;
  }

  .center {
    display: block;
    text-align: center;
    margin: 0 auto 1.5em auto;
  }

  /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * 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: 100%;
    border-collapse: collapse;
    color: #1A1A1A;
    border: none;
    margin: 0 0 1.5em 0;
  }

  caption {
    font-variant: small-caps;
  }

  tr { background: #EBF3F9; }
  tr.capitel { border-top: 0.5em solid #FFFFFF; }
  tr.capitel:first-child { border-top: none; }
  
  table.zeitreihen tr.tr-even, table.contenttable-0 tr.tr-even { border-bottom: 0.25em solid #FFFFFF; background: #EBF3F9; }
  table.zeitreihen tr.tr-odd, table.contenttable-0 tr.tr-odd { border-bottom: 0.25em solid #FFFFFF; background: #E3E9EC; }
  table.zeitreihen tr.tr-last, table.contenttable-0 tr.tr-last { border-bottom: none; }
  
  tr:hover, table.zeitreihen tr:hover, table.contenttable-0 tr:hover { background: #F9FBFB; }
  
  th,
  td {
    line-height: 1.5em;
    vertical-align: top;
    padding: 0.71429em 0.5em;
  }

  th *:first-child,
  td *:first-child {
    margin-top: 0;
  }

  th.nowrap,
  td.nowrap {
    white-space: nowrap;
  }

  thead th {
    text-align: left;
    color: #000;
    border-bottom: 2px #000 solid;
  }
}
