@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen fr 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 Schriftgren fr berschriften und bliche Text-Elemente
   *
   * @section content-fonts
   */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgren auf Standardgre (16 Pixel) zurcksetzen */
  html * { font-size: 100.01%; }

  /* (en) reset monospaced elements to font size 16px in Gecko browsers */
  /* (de) Schriftgre 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 erhlt Standardschriftgre von 12 Pixeln */
  body {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 75.00%; 
    color: #333;
  }
  


  h1,h2 { font-weight:bold; margin: 0 0 0.5em 0; color: #325EA6 }  /* Abstand nach unten 0.5em */
  h3,h4,h5,h6 { font-weight:bold; margin: 0 0 0.25em 0; color: #325EA6; }
  h1 { font-size: 180%; }                       /* 22px */
  h2 { font-size: 166.67%; }                    /* 20px */
  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 */

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

  /* ### Lists | Listen  #### */

  ul, ol, dl { line-height: 1.5em; margin: 0.5em 0 1em 1em; }
  li { margin-left: 1.5em; line-height: 1.5em; }

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

  /* ### text formatting | Textauszeichnung ### */

  cite, blockquote { font-style:italic; }
  blockquote { margin: 0 0 1em 1.5em; }

  strong,b { font-weight: bold; }
  .boldblue { color: #325EA6; font-weight: bold; }
      .blue { color: #325EA6; }
	    .boldred { color: #c8231f; font-weight: bold; }
  .darkblue { color: #003366; }
  em,i { font-style:italic; }
  
  small { font-size: 90%; }

  pre, code { font-family: monospace; font-size: 1.1em; }

  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #c00;
    cursor: help;
  }
  
  sup { vertical-align: 0.7ex; font-size: 80%; } /* Exponent darstellen */

  /**
   * 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: 1em; border-top: 1px #dbb dotted; border-bottom: 1px #dbb dotted; }

  .float_left { float: left; display:inline; margin-right: 2%; width: 80%; }
  .float_right { float: right; display:inline; margin-left: 1%; width: 17%; }
  * html .float_left { margin-right: 1%; width: 79%; }   /* fr IE6 */
  * html .float_right { margin-left: 0%; width: 18%; overflow: hidden; font-size: 90%; }   /* fr IE6 */
  .center { text-align:center; }   /* mittig ausrichten */

  /**
   * External Links
   *
   * (en) Formatting of hyperlinks
   * (de) Gestaltung von Hyperlinks
   *
   */

  a { color: #325EA6; /* text-decoration: none; */ }
  a:focus,
  a:hover,
  a:active { background-color: #F5F5F5; /* text-decoration: underline; */ }
  
  /* Links auf Startseite */
  .homelink a {
	font-size: 12pt;
	font-weight: bold;
	line-height: 1.4em;
	color: #325ea6;
	text-decoration: underline;
    }
	
	  .homelink1 a {
	font-size: 9pt;
	font-weight: bold;
	line-height: 1.4em;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #FF0000;
    }
  
  /* Bilderlinks ohne hover-Effekt 
   * einfach die Klasse .img im <a>-tag einbauen
   */
  a.img:focus,
  a.img:hover,
  a.img:active { background: none; text-decoration: none; }
  
  #topnav a { color: #aac; font-weight: bold; background:transparent; text-decoration:none; }
  #topnav a:focus,
  #topnav a:hover,
  #topnav a:active{ text-decoration:underline; background-color: transparent; }

  #footer a { color: #aac; background:transparent; font-weight: bold; }
  #footer a:focus,
  #footer a:hover,
  #footer a:active { color: #fff; 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 fr die Tabellenbreite und Gestaltungsvorschriften fr 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.0em; }
  thead th { background: #444; color: #fff; }
  tbody th { background: #ccc; color: #333; }
  tbody th.sub { background: #ddd; color: #333; }
  
  /* Tabelle auf Startseite */
  .hometb th { background: #cc0000; color: #fff; text-align: center; }
  .hometb th a { background: #cc0000; color: #fff; text-align: center; text-decoration: none; }   
  
  /* Produktboxen */
  table.prodtb { border: 1px solid #325EA6; width: 100%; }
  table.prodtb th { background: #325EA6; color: #ccc; padding: 5px 3px 5px 3px; }
  table.prodtb td { vertical-align: top; color: #325EA6; padding: 3px 6px 3px 3px; }
  .prodtb-left { width: 64%; } .prodtb-right { width: 36%; }
  
  /* Produktboxen */
  table.prodtb1 { border: 1px solid #325EA6; width: 100%; }
  table.prodtb1 th { background: #325EA6; color: #ccc; padding: 5px 3px 5px 3px; border: 1px solid #FFFFFF; width: 100%;   }
  table.prodtb1 td { vertical-align: top; color: #325EA6; padding: 3px 6px 3px 3px; border: 1px solid #CCCCCC; width: 100%; }
  .prodtb-left1 { width: 64%; } .prodtb-right { width: 36%; }
  
  /* rechtes Men inerhalb Produktbeschreibung */
  table.menutb { width: 100%; }
  table.menutb a { color: #fff; text-decoration: none; }   
  table.menutb a:hover { color:#cc0000; background: #325EA6; }             
  table.menutb th { background: none; font-size: 90%; padding: 0 5px 3px 3px; }             
  table.menutb td { background: #325EA6; color: #fff; font-weight: bold; padding: 3px 5px 3px 3px; }          
  table.menutb2 th { background: none; font-size: 90%; padding: 0 0 3px 3px; }       
  table.menutb2 td { font-weight: bold; line-height: 1.5em; padding: 0 0 0 3px; }
  
  /* Tabelle fr Kontaktformular */
  table.formulartb { width: 100%; border:2px solid #ccc; }
  table.formulartb tr, table.formulartb th { border:2px solid #ccc; padding: 3px; }
  table.formulartb td { border:2px solid #ccc; padding: 3px; }
  .thirdwd { width: 33%; }
  .bluebg { background: #325ea6; color: #fff; font-size: 1.2em; }
  .greybg { background: #325ea6; color: #ccc; }
  
  /* Tabelle fr referenzen */
  .referencetb td {
    color: #003366;
    line-height: 1.4em;
    font-size: 90%;
    padding: 0em 2em 1.5em 2em;     /*orul*/
    vertical-align: top;
    }   

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

  hr {
    color: #fff;
    background:transparent;
    margin: 0 0 1em 0;
    padding: 0 0 1em 0;
    border:0;
    border-bottom: 1px #000 solid;
  }
  
  .pageName {
	font-size: 22px;
	font-weight:bold;
	color: #325ea6;
	}
	
	  .pageName_bg weiss {
	font-size: 22px;
	font-weight:bold;
	color: #325ea6;
	background-color: #FFFFFF;	
	}
	
	  .grau {
	font-size: 12px;
	font-weight:lighter;
	color: #666666;
	}
	
  .button {
	font-size: 22px;
	font-weight:bold;
	color: #fff;
	text-decoration:none;
	}

  
  /***** Linkes Men *****/  
  .left-menu {
    font-size:90%;
    margin:0 0 0 -31px;
    position:relative;
    }
  .left-menu ul {
    background:transparent none repeat scroll 0 0;
    border-width:1px 1px 0;
    list-style-type:none;
    margin:0;
    padding:0;
    position:relative;
    width:165px;
    } 
  .left-menu li {
    background:transparent none repeat scroll 0 0;
    height:26px;
    } 
  .left-menu a {
    background:transparent none repeat scroll 0 0;
    border-bottom:1px solid #888888;
    color:#333;
    font-weight:bold;
    display:block;
    height:25px;
    line-height:25px;
    text-decoration:none;
    text-indent:5px;
    width:150px;
    }
  .left-menu a:hover, .left-menu a.active {
    background: #3f77ba;
    border-bottom:1px solid #888888;
    color:#fff;
    font-weight:bold;
    display:block;
    height:25px;
    line-height:25px;
    text-decoration:none;
    text-indent:5px;
    width:150px;
    }
	
	.Stil1 {
	font-size: 9pt;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;	
}


.Stil2 {
	font-size: 14pt;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;	
}

   
}
