/**
 * "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.3
 * @revision        $Revision:426 $
 * @lastmodified    $Date: 2010-09-14 21:19:30 +0200 (Di, 14 Sep 2010) $
 */

@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:#4d87c7 url("../../images/bg_blue.png") repeat-x top left fixed; padding:10px 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 { max-width:1200px; background:#fff;overflow: hidden; }
  .page { padding:0px;}

  #header {
    color:#cdcdcd;
   // background:#2e2a2a; 
    padding:0px 0px 0px 20px;
	position:relative;
	line-height:8px;
	//background:#0c2042 url("../../assets/videoheader1200.jpg");
  }
  
  .headerbanner {
	bottom: 1px;
	position: absolute;
	right: 10px;
  }

  .langmenu {
	bottom: 6px;
	position: absolute;
	right: 5px;
  }

  /* (en) #topnav gets absolute positioning within #header */
  /* (de) #topnav wird innerhalb von #header absolut positioniert */
  #topnav { 
	background:transparent; 
  	color:#000; 
    position:absolute;
    top:10px;
    right:10px; /* LTR */
	text-align:right; /* LTR */
  }

  /* (en) adjustment of main navigation */
  /* (de) Anpassung der Hauptnavigation */
  
  #nav {overflow:hidden;}
  #nav ul { margin-left:20px; }

  #main { background:#fff;margin:10px 20px 0px 20px; }

  #footer {
    color:#5d5c5c;
    //background:#0c2042 url("../../assets/videofooter1200.jpg");
    padding:10px 10px;
    //border-top:1px #000000 solid;
	line-height:4px;
    text-align:right; /* LTR */
  }

  .footerbanner {
	bottom: 1px;
	right: 10px;
	text-align: right;
	margin-right: 10px;
  }
    
  .align-left { text-align: left }
  .align-right { text-align: right }
  .align-center { text-align: center }
  .align-justify { text-align: justify }

  /* (en) Backup for correct positioning */
  /* (de) Absicherung korrekte Positionierung */
  #header, #nav, #main, #footer { clear:both; }

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

  /**
   * (en) Formatting content container
   * (de) Formatierung der Inhalts-Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col1   | #col3     | #col2   |
   * | 25%     | flexible  | 25%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */


  #col1 { width:25%; }
  #col1_content { padding:10px 10px 10px 20px; }

  #col2 { width:25%; }
  #col2_content { padding:10px 20px 10px 10px; }

  #col3 { margin:0 25%; }
  #col3_content { padding:10px; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * (en) Styling of layout specific elements
  * (de) Gestaltung layoutabhängiger Elemente
  */

  #header h1 {
    font-weight:bold;
    font-size:2.5em;
    letter-spacing:-2px;
    line-height:65%;
    color:#000;
  }

  #header span { color:#5d5c5c; }

  #topnav a { color:#5d5c5c; 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:#5d5c5c; 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:none;
  }
  
.rootline {
  	font-size: 90%;
  	color: #777;
  	text-align: right;
	margin-right: 10px;
  	} 	
}