@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Screen layout for YAML examples
 * (de) Bildschirmlayout fÃ¼r YAML-Beispiele
 *
 * @copyright       Copyright 2005-2010, 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.2.1
 * @revision        $Revision: 443 $
 * @lastmodified    $Date: 2009-12-31 18:05:05 +0100 (Do, 31. Dez 2009) $
 */

@media screen, projection
{
  /**
   * (en) Forcing vertical scrollbars in IE8, Firefox, Webkit & Opera
   * (de) Erzwingen vertikaler Scrollbalken in IE8, Firefox, Webkit & Opera
   *
   * @workaround
   * @affected IE8, FF, Webkit, Opera
   * @css-for all
   * @valid CSS3
   */

  body { overflow-y: scroll; }

  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Formatting YAML's  basic layout elements
   * (de) Gestaltung des YAML Basis-Layouts
   */

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body { background: #5e5e9f url("../images/body-bg.png") repeat-x top left scroll; padding: 0; }

  /* (en) Centering layout in old IE-versions */
  /* (de) Zentrierung des Layouts in alten IE-versionen */
  body { text-align: center; }
  .page_margins { text-align:left; margin: 0 auto; }

  /* (en) Layout: width, background, borders */
  /* (de) Layout: Breite, Hintergrund, Rahmen */
  .page_margins { min-width: 740px; max-width: 80em; background: transparent; }
  /*.page { padding: 10px; }*/
  .page { padding: 0px 10px 20px 10px; }

  /* (en) Designing main layout elements */
  /* (de) Gestaltung der Hauptelemente des Layouts */

  #header {
    color: #000;
    background: transparent url("../images/f3-logo.png") no-repeat 40px 20px;
    padding: 20px 0px 0px 20px;
    height: 120px;
  }
  #header #logo, /* Hide */
  #header #tag,
  body.toplevel #main h1 {
    position: absolute;
    left: -1000em;
    top: -1000em;
    width: 1px;
    height: 1px; /* Can't set 0px height otherwise screen readers may not read content */
    overflow: hidden;
  }

  #header #topnav { color: #fff; background: transparent; top: 20px; right: 20px; }

  /* (en) adjustment of main navigation */
  /* (de) Anpassung der Hauptnavigation */
  #nav ul { margin-left: 20px; }
  #nav ul a,
  #nav ul strong {
    font-size: 120%;
  }

  #main { background: transparent;padding:0; }

  #footer {
    color:#666;
    padding: 0;
    line-height: 1.5em;
    font-size: 90%;
    height: 12em;
    background-image: url('../images/f3-tag.png');
    background-position: right;
    background-repeat: no-repeat;
  }

  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Repositioning content container
   * (de) Neupositionierung der Content Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col1               | #col3   |
   * | 75%                 | flexible|
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  /* #col1 becomes main column | Linke float-Spalte wird zur Inhaltsspalte */
  #col1 { width: 100%; }
  #col1_content { background:#fff;padding: 0; }

  /* hide #col2 | Rechte Spalte abschalten */
  #col2, #col2_content { display:none }

  /* #col3 moves to the right | Linken Randabstand anpassen - #col3 wird zur Randspalte */
  #col3 { margin-left:75%; margin-right:0; }
  #col3_content { background:transparent; padding: 0; margin-left:20px; }

  #col1_content .content,
  #col3_content .content {
    margin: 13px;
  }
  #col1_content,
  #col3_content .rounded {
     margin-bottom: 20px;
  }

  #col3_content .rounded,
  #footer .rounded {
    background-color: #eaeaff;
  }

  #footer .content { margin: 3px; }
  #footer .content p { margin-bottom: 0; }

/*  .subcl { border-right: 1px dotted #ccc; }
  .subcl { padding:0 20px 0 0; }
  .subcr { padding:0 0 0 20px; }*/

  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Styling of layout specific elements
   * (de) Gestaltung layoutabhÃ¤ngiger Elemente
   */

/*  #header h1 {
    font-weight:bold;
    letter-spacing:-2px;
    line-height:65%;
    color:#fff;
  }*/

  #header span { color:#fff; }

  #topnav a { color: #fff; font-weight: normal; background:transparent; text-decoration:underline; }
  #topnav a:focus,
  #topnav a:hover,
  #topnav a:active {color: #c8ddf3; 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; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Skiplinks
  *
  * (en) Visual styling for skiplink navigation
  * (de) Visuelle Gestaltung der Skiplink-Navigation
  *
  * @section content-skiplinks
  */

  #skiplinks a.skip:focus,
  #skiplinks a.skip:active {
	color: #fff;
	background: #333;
	border-bottom: 1px #000 solid;
	padding: 10px 0;
	text-decoration:underline;
  }
}

