@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-2008, 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.0.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
 * @appdef yaml
 */

@media all
{
  /**
   * Fonts
   * (en) font-family and font-size selection for headings and standard text elements
   * (de) Zeichensatz und Schriftgrößen für Überschriften und übliche Text-Elemente
   *
   * @section content-fonts
   */

  /* (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 Gecko browsers */
  /* (de) Schriftgröße von monospaced Elemente auf 16 Pixel setzen */
  textarea, pre, tt, code {
	   font-family: "Courier New", Courier, monospace;  	
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    /*font-family: "Times New Roman";*/
    font-size: 75.00%; 
    color: #333; 
  }

  h1,h2,h3,h4,h5,h6,.pagetitle {
    /*font-family: "Times New Roman";*/ 
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-weight: bold; 
    color: #005588;
    margin: 0 0 0.75em 0; 
  }

  h1 { font-size: 200% }                        /* 24px */
  h2 { font-size: 170% }                        /* ? */
  h3 { font-size: 150% }                        /* 18px */
  h4 { font-size: 133.33% }                     /* 16px */
  h5 { font-size: 116.67% }                     /* 14px */
  h6 { font-size: 116.67%; font-style:italic }  /* 14px */
  .pagetitle { font-size: 200%; }

  #header span {
    color:#999;
  }

  p { line-height: 1.5em; margin: 0 0 1em 0; }

  /* ### Lists | Listen  #### */

  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em }
  li { margin-left: 1.5em; margin-bottom: 0.25em; line-height: 1.5em }

  dt { font-weight: bold }
  dd { margin: 0 0 1em 2em }

  /* ### text formatting | Textauszeichnung ### */

  cite, blockquote { font-style: italic; }
  blockquote { margin: 0 0 1em 1.5em; }

  strong, b { font-weight: bold; }
  em, i { font-style: italic; }

  pre, code { font-family: monospace; font-size: 1.1em; }

  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #c00;
    cursor: help;
  }

  /**
   * Generic Content Classes
   * (en) standard classes for positioning and highlighting
   * (de) Standardklassen zur Positionierung und Hervorhebung
   *
   * @section content-generic-classes
   */

  .note {
    background: #dfd;
    padding: 1em;
    border-top: 1px #bdb dotted;
    border-bottom: 1px #bdb dotted;
  }
  
  .important {
    background: #ffd;
    padding: 1em;
    border-top: 1px #ddb dotted;
    border-bottom: 1px #ddb dotted;
  }
  
  .warning {
    background: #fdd;
    /*padding: 0.5em 1em 0.5em 48px;*/
    padding: 1em;
    border-top: 1px #dbb dotted;
    border-bottom: 1px #dbb dotted;
    /*
    background-image: url(/lifebook/pub/images/symb_warning.png);
    background-repeat: no-repeat;
    background-position: top left;*/
  }

  .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 { text-align:center; margin: 0.5em auto }

  /**
   * External Links
   *
   * (en) Formatting of hyperlinks
   * (de) Gestaltung von Hyperlinks
   *
   */

  a {color: #4D87C7; text-decoration:none;}
  a:focus,
  a:hover,
  a:active {color:#182E7A; text-decoration: underline;}
  
  #topnav a { color: #999; font-weight: normal; background: transparent; text-decoration: none; }
  #topnav a:focus, 
  #topnav a:hover,
  #topnav a:active { text-decoration: underline; background-color: transparent;}
  
  #footer a { color: #999; background: transparent; font-weight: bold;}
  #footer a:focus, 
  #footer a:hover,
  #footer a:active {color: #4D87C7; background-color: transparent; text-decoration: underline;}

  /**
   * (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;
  }
  */

  /**
   * 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-bottom: 0.5em; }
  table.full { width: 100%; }
  table.fixed { table-layout:fixed }

  th,td { padding: 0.3em; }
  thead th { background: #444; color: #fff }
  tbody th { background: #ccc; color: #333 }
  tbody th.sub { background: #ddd; color: #333 }
  
  /**
   * Miscellaneous | Sonstiges
   *
   * @section content-misc
   */

  hr {
    color: #fff;
    background: transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 0.5em 0;
    border:0;
    border-bottom: 1px #eee solid;
  }
  
  /** Joomla spezifisch */
  
  /*li#current {
    font-weight: bold;
  }*/
  
  .topcontent {
    /* float: right;  der ganze Block nach rechts*/
    width: 500px;
    height: 120px;       /* Hoehe des Logos */
    background: #ffffff; /* aaaaaa fuer Test */
    line-height: 130%;
    margin-top: 0.5em;
    margin-left: 20px;
    font-size: 90.00%;
    margin-bottom: 0px;
  }
  
  .topcontent h1 {
    font-size: 120.0%;
    font-weight: bold;
    /*line-height: 65%;*/
    color: #005588;
    margin-bottom: 0.5em;
  }
  
  .topcontent h3 {
    font-size: 150.0%;
    font-weight: bold;
    color: #005588;
    margin-bottom: 0.5em;
    line-height: 1.5em;
  }
  
  div.breadcrumbs {
    margin-bottom: 10px;
  }
  
  .moduletable {
    font-size: 90.00%;
  }
  
  #col1_content .moduletable, #col1_content .moduletable_menu {
    background: #88bbcc;
    background-image: url(../../images/verlauf_hell.png);
    background-repeat: repeat-x;
    background-position: top left;
    padding: 0px 10px 10px 10px;
    margin-bottom: 20px;
	font-size: 90.00%;
  }
  
  #col1_content .moduletable h3, #col1_content .moduletable_menu h3 {
    padding: 2px 2px 2px 10px;
    text-align: left;
    font-size: 100.00%;
    color: #ffffff;
    background: #005588;
	margin-left: -10px;
	margin-right: -10px;
  }
  
  .moduletable_stempel {
    margin-top: 30px;
  }
  
  #col2_content .moduletable {
    background: #ffffff;
    /* background-image: url(../../images/verlauf_dunkel.png);
    background-repeat: repeat-x;
    background-position: bottom left; */
    padding: 0px 10px 10px 10px;
    margin-bottom: 15px;
    font-size: 90.00%;
  }
  
  #col2_content .moduletable h3 {
    padding: 2px 2px 2px 10px;
    margin: 0px -10px 10px -10px;
    text-align: left;
    font-size: 100.00%;
    color: #ffffff;
    background: #005588;
    background-image: url(../../images/ecke_rechts_oben.png);
    background-repeat: no-repeat;
    background-position: top right;
  }
  
  .moduletable_sprechblase {
    margin-bottom: 20px;
  }
  
  div.article_row, div.leading {
    background: #ffffff;
    background-image: url(../../images/verlauf_hell_unten.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    padding: 0px 10px 25px 10px;
    /*margin-left: -10px;*/
    /*margin-right: -10px;*/
    margin-bottom: 20px;
    border: 1px solid #88bbcc;
    font-size: 90.00%;
  }
  
  div.article_row h2, div.leading h2 {
    margin-top: 15px;
	margin-bottom: 15px;
    font-size: 130.00%;
  }
  
  div.article_row {
    margin-bottom: 30px;
  }
  
  h3.itemheader {
    padding: 2px 2px 2px 10px;
    margin-left: -10px;
    margin-right: -10px; 
    text-align: left;
    font-size: 100.00%;
    color: #ffffff;
    background: #88bbcc; 
  }
  
  div.contentdescription {
    margin-bottom: 30px;
  }
  
  div.blog_more {
    background: #ffffff;
  }
  
  div.page_pagination {
    text-align: center;
    margin-top: 30px;
  }
  
  ul.pagination {
    display: inline;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  
  ul.pagination li {
    display: inline;
    margin: 5px;
  }
  
  ul.pagination li strong {
    display: inline;
    margin: 5px;
    font-weight: bold;
  }
  
  p.buttonheading {
    float: right;
  }
  
  p.modifydate {
    /*text-align: right;*/
    margin-top: -10px;
    font-size: 90.0%;
  }
  
  p.createdate {
    font-size: 90.0%;
  }
  
  .pagenav {
    display: none;
  }
  
  .read_more {
    float: right;
    text-align: right;
  }
  
  table.layout_table {
    width: 100%;
	border: 0px;
  }
  
  table.layout_table tr td {
    margin-left: 0px;
    padding-left: 0px;
  }
  
  .caption_top {
    font-size: 85.00%;
  }
  
  .caption_bottom {
    font-size: 85.00%;
  }
  
  .box_left {
    float: left;
	display: inline;
	margin-right: 2em;
	margin-bottom: 0.15em;
	width: 12em;
	text-align: right;
  }
	 
  .box_right {
    float: right;
	display: inline;
	margin-left: 2em;
	margin-bottom: 0.15em;
	width: 12em;
  }
}

